library(dplyr) # A package for data manipulation
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(sf) # Simple feature for R
## Linking to GEOS 3.11.0, GDAL 3.5.3, PROJ 9.1.0; sf_use_s2() is TRUE
library(spdep) # Functions and tests for evaluating spatial patterns
## Loading required package: spData
## To access larger datasets in this package, install the spDataLarge
## package with: `install.packages('spDataLarge',
## repos='https://nowosad.github.io/drat/', type='source')`
library(tidyr) # Tools to create tidy data
library(INLA) # Integrated Nested Laplace Approximation package
## Loading required package: Matrix
##
## Attaching package: 'Matrix'
## The following objects are masked from 'package:tidyr':
##
## expand, pack, unpack
## Loading required package: sp
## This is INLA_24.06.27 built 2024-06-27 03:00:51 UTC.
## - See www.r-inla.org/contact-us for how to get help.
## - List available models/likelihoods/etc with inla.list.models()
## - Use inla.doc(<NAME>) to access documentation
library(ggplot2) # A package for creating maps and graphs
library(viridis) # A package providing color palettes
## Loading required package: viridisLite
library(patchwork) # A package to compose plots
# For tables in RMarkdown
library(knitr)
library(kableExtra)
##
## Attaching package: 'kableExtra'
## The following object is masked from 'package:dplyr':
##
## group_rows
# rstudioapi::getSourceEditorContext()$path
RESP_DATA = read.csv("Data_final.csv")
shape_file = st_read("LocalAuthorities_shp/LocalAuthorities.shp")
## Reading layer `LocalAuthorities' from data source
## `/Users/oliverfox/Documents/Documents/imperial_masters/bayesian/mini_project/data/LocalAuthorities_shp/LocalAuthorities.shp'
## using driver `ESRI Shapefile'
## Simple feature collection with 322 features and 8 fields
## Geometry type: MULTIPOLYGON
## Dimension: XY
## Bounding box: xmin: 131950.4 ymin: 11073.5 xmax: 655989 ymax: 657599.5
## Projected CRS: OSGB36 / British National Grid
# RESP_DATA
# We consider yearly pneumonia deaths the equivalent of 'hospital admissions for respiratory conditions in greater glasgow and clyde'
# We start by computing the total number of cases of deaths per year, and format output in a table.
kable(RESP_DATA %>%
group_by(Year_death) %>%
summarise(Y = sum(Y), expected=sum(E), booktabs = T, caption = "Hospital admissions by year")) %>%
kable_styling(bootstrap_options = "striped", full_width = F, position = "center")
| Year_death | Y | expected | booktabs | caption |
|---|---|---|---|---|
| 2002 | 36370 | 25566.09 | TRUE | Hospital admissions by year |
| 2003 | 38045 | 25797.30 | TRUE | Hospital admissions by year |
| 2004 | 34105 | 26172.54 | TRUE | Hospital admissions by year |
| 2005 | 34695 | 26704.84 | TRUE | Hospital admissions by year |
| 2006 | 31700 | 27213.31 | TRUE | Hospital admissions by year |
| 2007 | 31035 | 27711.70 | TRUE | Hospital admissions by year |
| 2008 | 31910 | 27884.74 | TRUE | Hospital admissions by year |
| 2009 | 29535 | 28472.60 | TRUE | Hospital admissions by year |
| 2010 | 27900 | 29463.70 | TRUE | Hospital admissions by year |
| 2011 | 25850 | 30402.07 | TRUE | Hospital admissions by year |
| 2012 | 25965 | 31227.44 | TRUE | Hospital admissions by year |
| 2013 | 26465 | 31895.20 | TRUE | Hospital admissions by year |
| 2014 | 23275 | 32853.21 | TRUE | Hospital admissions by year |
| 2015 | 27090 | 33314.60 | TRUE | Hospital admissions by year |
| 2016 | 24755 | 34085.52 | TRUE | Hospital admissions by year |
| 2017 | 24800 | 34730.15 | TRUE | Hospital admissions by year |
# Plotting the spatial object using ggplot2:
ggplot() +
geom_sf(data = shape_file, color = "blue", fill = "white") +
coord_sf() + #axis limits and CRS
theme_bw() + # dark-on-light theme
theme(axis.title = element_text(size = 14),
axis.text = element_text(size = 12))
# In order to use the same data structure for both the space-only model and later the space-time model, new set of data is formed
# by aggregating both observed and expected counts over time, poisson-log linear model then fitted, assuming BYM2 model for random effects
# define neighbors and create weights list
shape_nb = poly2nb(shape_file, snap = 1000, queen = TRUE)
summary(shape_nb)
## Neighbour list object:
## Number of regions: 322
## Number of nonzero links: 1768
## Percentage nonzero weights: 1.705181
## Average number of links: 5.490683
## Link number distribution:
##
## 1 2 3 4 5 6 7 8 9 10 11 12
## 4 18 31 52 52 59 60 30 10 4 1 1
## 4 least connected regions:
## 126 158 159 160 with 1 link
## 1 most connected region:
## 111 with 12 links
# now convert list of neighbors to inla format using nb2WB
nb2INLA("shape.graph", shape_nb)
shape.adj = paste(getwd(), "/shape.graph", sep = "")
# aggregate observed and expected cases over geographical areas
RESP_DATAagg = RESP_DATA %>% group_by(lad09cd) %>%
summarize(observed = sum(Y),
expected = sum(E)) %>%
dplyr::rename(O = observed, E = expected)
RESP_DATAagg = RESP_DATAagg %>% mutate(SMR = O/E)
# Data Check
# RESP_DATAagg
# Produce a spatial map of aggregated SMRs using ggplot2.
RESP_DATAagg$SMRcat = cut(RESP_DATAagg$SMR,
breaks=c(min(RESP_DATAagg$SMR),
0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6,
max(RESP_DATAagg$SMR)), include.lowest = T)
map_SMR = left_join(shape_file, RESP_DATAagg, by = c("lad09cd" = "lad09cd"))
# Output map
ggplot() + geom_sf(data = map_SMR, color = NA) + aes(fill = SMRcat) +
theme_bw() + scale_fill_viridis_d() +
guides(fill=guide_legend(title="SMR"))
# Data Check
map_SMR
## Simple feature collection with 322 features and 12 fields
## Geometry type: MULTIPOLYGON
## Dimension: XY
## Bounding box: xmin: 131950.4 ymin: 11073.5 xmax: 655989 ymax: 657599.5
## Projected CRS: OSGB36 / British National Grid
## First 10 features:
## objectid lad09cd lad09nm lad09nmw st_areasha st_lengths
## 1 3 00AC Barnet <NA> 86742395 50795.70
## 2 4 00AD Bexley <NA> 64285871 43421.49
## 3 7 00AG Camden <NA> 21789918 26146.44
## 4 8 00AH Croydon <NA> 86503636 58696.71
## 5 9 00AJ Ealing <NA> 55544303 47439.02
## 6 2 00AB Barking and Dagenham <NA> 37799330 36966.97
## 7 5 00AE Brent <NA> 43232637 38334.05
## 8 6 00AF Bromley <NA> 150134897 76166.98
## 9 120 00MF Wokingham <NA> 178965495 86865.63
## 10 121 00MG Milton Keynes <NA> 308626793 102960.26
## Name Year O E SMR SMRcat
## 1 Barnet LB 2002 3220 3049.644 1.0558610 (1,1.2]
## 2 Bexley LB 2002 1725 2064.093 0.8357180 (0.8,1]
## 3 Camden LB 2002 1020 1354.550 0.7530177 (0.6,0.8]
## 4 Croydon LB 2002 3075 2546.509 1.2075356 (1.2,1.4]
## 5 Ealing LB 2002 2480 2022.281 1.2263379 (1.2,1.4]
## 6 Barking and Dagenham LB 2002 1710 1221.239 1.4002179 (1.4,1.52]
## 7 Brent LB 2002 1755 1717.909 1.0215907 (1,1.2]
## 8 Bromley LB 2002 2930 3099.975 0.9451688 (0.8,1]
## 9 Wokingham UA 2002 1295 1233.658 1.0497240 (1,1.2]
## 10 Milton Keynes UA 2002 2080 1441.502 1.4429396 (1.4,1.52]
## geometry
## 1 MULTIPOLYGON (((525814.1 19...
## 2 MULTIPOLYGON (((549848.3 18...
## 3 MULTIPOLYGON (((527180.7 18...
## 4 MULTIPOLYGON (((531442.9 17...
## 5 MULTIPOLYGON (((515000.1 18...
## 6 MULTIPOLYGON (((548881 1910...
## 7 MULTIPOLYGON (((520284.7 19...
## 8 MULTIPOLYGON (((541382.1 17...
## 9 MULTIPOLYGON (((479159.8 18...
## 10 MULTIPOLYGON (((490173.6 25...
# Data Check
nrow(RESP_DATAagg)
## [1] 322
# Fit the hierarchical poisson log-linear model in INLA.
ID = seq(1,322)
formula_BYM2 = O ~ f(ID, model="bym2", graph=shape.adj,
hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01)),
phi = list(
prior = "pc",
param = c(0.5, 2 / 3))))
sBYM.model = inla(formula=formula_BYM2, family="poisson", data=RESP_DATAagg, E=E, control.compute=list(waic=TRUE))
# Obtain posterior summary statistics mean/posterior probability that the residual is above 1) of the parameters of interest
#Relative risks
RR_sBYM = c()
for(i in 1:322){
RR_sBYM[i] = inla.emarginal(function(x) exp(x),
sBYM.model$marginals.random$ID[[i]])
}
#Posterior probabilities
RR_sBYM_marg = sBYM.model$marginals.random$ID[1:322]
PP_sBYM = lapply(RR_sBYM_marg, function(x) {1-inla.pmarginal(0,x)})
# Obtain the posterior estimates from the spatial model to be plotted, that is (i) area level posterior mean of residual RR
# ii) the posterior probability that the residual RRs > 1
resRR_PP = data.frame(resRR=RR_sBYM,
PP=unlist(PP_sBYM),
SP_ID=RESP_DATAagg[,1])
# produce map of posterior mean of residual RRs and posterior probabilities that residual RRS are > 1
resRR_PP$resRRcat = cut(resRR_PP$resRR, breaks=c(min(resRR_PP$resRR),
0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6,
max(resRR_PP$resRR)),include.lowest = T)
# breakpoints
resRR_PP$PPcat = cut(resRR_PP$PP, c(0, 0.2, 0.8, 1.00), include.lowest = TRUE)
# join sf object and dataframe with posterior estimates.
map_RR_PP = left_join(shape_file, resRR_PP, by = c("lad09cd" = "lad09cd"))
# produce maps
p1 = ggplot() + geom_sf(data = map_RR_PP, color = NA) + aes(fill = resRRcat) +
theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title="RR")) + ggtitle("RR Spatial model") +
theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p2 = ggplot() + geom_sf(data = map_RR_PP, color = NA) + aes(fill = PPcat) +
theme_bw() +
scale_fill_viridis(
option = "plasma", name="PP",
discrete = T,
direction = -1,
guide = guide_legend(
title.position = 'top',
reverse = T
)) + ggtitle("PP Spatial model") + theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p1|p2
# the BYM2 model smooths raw SMRs by borrowing strength from neighbouring areas while still allowing for independent noise. The PC guards against overfitting
# first map tells you magnitude of excess or reduced risk after smoothing away random noise
# second map is about how certain we are that RR > 1 i.e. if PP close to 0, then strong evidence that areas risk is actually below average, PP>0.8 strong evidence areas risk above average
# therefore light and dark areas are strongest evidence for real excess risk (positive or negative)
# estimate the spatial fraction
# as bymw has structured and unstructured components useful to get ideas about strength of spatially structured componets to indicate clustering in data
sBYM.model$summary.hyperpar # says about 0.4 of spatial variablity explained by spatiall structured component
## mean sd 0.025quant 0.5quant 0.975quant
## Precision for ID 35.9529139 3.51843903 29.4950431 35.7923238 43.3341377
## Phi for ID 0.4082636 0.09134986 0.2396643 0.4049854 0.5951516
## mode
## Precision for ID 35.4943000
## Phi for ID 0.3974274
RESP_DATA
## lad09cd Name Year_death Y E
## 1 00AB Barking and Dagenham LB 2002 145 78.04092
## 2 00AB Barking and Dagenham LB 2003 210 75.89981
## 3 00AB Barking and Dagenham LB 2004 130 75.55028
## 4 00AB Barking and Dagenham LB 2005 130 74.09686
## 5 00AB Barking and Dagenham LB 2006 135 75.37409
## 6 00AB Barking and Dagenham LB 2007 115 74.70840
## 7 00AB Barking and Dagenham LB 2008 125 73.82938
## 8 00AB Barking and Dagenham LB 2009 100 74.62192
## 9 00AB Barking and Dagenham LB 2010 75 72.87822
## 10 00AB Barking and Dagenham LB 2011 90 75.55620
## 11 00AB Barking and Dagenham LB 2012 90 75.14655
## 12 00AB Barking and Dagenham LB 2013 85 77.07471
## 13 00AB Barking and Dagenham LB 2014 70 78.73032
## 14 00AB Barking and Dagenham LB 2015 75 77.76913
## 15 00AB Barking and Dagenham LB 2016 60 82.16140
## 16 00AB Barking and Dagenham LB 2017 75 79.80030
## 17 00AC Barnet LB 2002 270 173.12313
## 18 00AC Barnet LB 2003 265 172.58617
## 19 00AC Barnet LB 2004 230 175.57573
## 20 00AC Barnet LB 2005 245 176.39895
## 21 00AC Barnet LB 2006 190 179.05046
## 22 00AC Barnet LB 2007 210 180.48199
## 23 00AC Barnet LB 2008 260 181.37484
## 24 00AC Barnet LB 2009 220 181.03812
## 25 00AC Barnet LB 2010 210 186.84143
## 26 00AC Barnet LB 2011 160 189.28241
## 27 00AC Barnet LB 2012 155 199.28160
## 28 00AC Barnet LB 2013 165 199.06245
## 29 00AC Barnet LB 2014 150 209.66482
## 30 00AC Barnet LB 2015 165 212.68483
## 31 00AC Barnet LB 2016 160 213.75019
## 32 00AC Barnet LB 2017 165 219.44666
## 33 00AD Bexley LB 2002 135 110.36574
## 34 00AD Bexley LB 2003 150 110.45660
## 35 00AD Bexley LB 2004 110 110.91809
## 36 00AD Bexley LB 2005 115 112.77884
## 37 00AD Bexley LB 2006 115 116.81717
## 38 00AD Bexley LB 2007 110 119.53626
## 39 00AD Bexley LB 2008 125 120.96047
## 40 00AD Bexley LB 2009 110 124.21754
## 41 00AD Bexley LB 2010 90 125.99997
## 42 00AD Bexley LB 2011 95 134.95486
## 43 00AD Bexley LB 2012 105 134.72529
## 44 00AD Bexley LB 2013 105 137.85550
## 45 00AD Bexley LB 2014 90 148.71592
## 46 00AD Bexley LB 2015 90 146.55586
## 47 00AD Bexley LB 2016 75 151.62287
## 48 00AD Bexley LB 2017 105 157.61243
## 49 00AE Brent LB 2002 125 93.66142
## 50 00AE Brent LB 2003 160 92.78488
## 51 00AE Brent LB 2004 150 95.94247
## 52 00AE Brent LB 2005 140 97.34839
## 53 00AE Brent LB 2006 105 97.79156
## 54 00AE Brent LB 2007 120 99.36069
## 55 00AE Brent LB 2008 125 99.98000
## 56 00AE Brent LB 2009 105 101.15974
## 57 00AE Brent LB 2010 120 102.21734
## 58 00AE Brent LB 2011 75 107.48029
## 59 00AE Brent LB 2012 110 106.99192
## 60 00AE Brent LB 2013 90 113.95552
## 61 00AE Brent LB 2014 85 119.32182
## 62 00AE Brent LB 2015 95 123.25985
## 63 00AE Brent LB 2016 70 131.25231
## 64 00AE Brent LB 2017 80 135.40093
## 65 00AF Bromley LB 2002 275 170.95547
## 66 00AF Bromley LB 2003 265 174.22167
## 67 00AF Bromley LB 2004 245 173.91496
## 68 00AF Bromley LB 2005 205 178.42801
## 69 00AF Bromley LB 2006 165 182.05727
## 70 00AF Bromley LB 2007 195 185.68522
## 71 00AF Bromley LB 2008 235 182.32238
## 72 00AF Bromley LB 2009 175 187.62523
## 73 00AF Bromley LB 2010 135 190.98421
## 74 00AF Bromley LB 2011 135 194.63884
## 75 00AF Bromley LB 2012 150 201.98900
## 76 00AF Bromley LB 2013 160 204.82684
## 77 00AF Bromley LB 2014 145 213.74035
## 78 00AF Bromley LB 2015 140 217.36755
## 79 00AF Bromley LB 2016 160 221.58706
## 80 00AF Bromley LB 2017 145 219.63138
## 81 00AG Camden LB 2002 115 72.09814
## 82 00AG Camden LB 2003 90 73.49570
## 83 00AG Camden LB 2004 70 71.91934
## 84 00AG Camden LB 2005 75 70.21509
## 85 00AG Camden LB 2006 60 71.05889
## 86 00AG Camden LB 2007 65 73.60887
## 87 00AG Camden LB 2008 70 75.76889
## 88 00AG Camden LB 2009 60 76.32203
## 89 00AG Camden LB 2010 50 77.51962
## 90 00AG Camden LB 2011 45 88.11371
## 91 00AG Camden LB 2012 55 90.66814
## 92 00AG Camden LB 2013 55 94.72408
## 93 00AG Camden LB 2014 55 98.38777
## 94 00AG Camden LB 2015 60 104.10298
## 95 00AG Camden LB 2016 50 103.85354
## 96 00AG Camden LB 2017 45 112.69297
## 97 00AH Croydon LB 2002 275 146.52304
## 98 00AH Croydon LB 2003 280 143.93893
## 99 00AH Croydon LB 2004 230 145.84702
## 100 00AH Croydon LB 2005 225 146.75367
## 101 00AH Croydon LB 2006 200 148.85545
## 102 00AH Croydon LB 2007 160 149.77219
## 103 00AH Croydon LB 2008 195 147.76302
## 104 00AH Croydon LB 2009 205 152.35836
## 105 00AH Croydon LB 2010 210 157.89148
## 106 00AH Croydon LB 2011 170 158.95246
## 107 00AH Croydon LB 2012 150 159.96496
## 108 00AH Croydon LB 2013 145 167.34164
## 109 00AH Croydon LB 2014 145 173.61838
## 110 00AH Croydon LB 2015 180 177.54219
## 111 00AH Croydon LB 2016 155 182.56593
## 112 00AH Croydon LB 2017 150 186.82008
## 113 00AJ Ealing LB 2002 235 112.90374
## 114 00AJ Ealing LB 2003 230 112.62515
## 115 00AJ Ealing LB 2004 230 112.58188
## 116 00AJ Ealing LB 2005 215 113.68130
## 117 00AJ Ealing LB 2006 155 116.07810
## 118 00AJ Ealing LB 2007 170 118.70351
## 119 00AJ Ealing LB 2008 165 120.19490
## 120 00AJ Ealing LB 2009 155 120.26851
## 121 00AJ Ealing LB 2010 135 125.18293
## 122 00AJ Ealing LB 2011 115 124.41019
## 123 00AJ Ealing LB 2012 130 128.31522
## 124 00AJ Ealing LB 2013 115 134.23368
## 125 00AJ Ealing LB 2014 120 141.08050
## 126 00AJ Ealing LB 2015 95 139.56701
## 127 00AJ Ealing LB 2016 100 151.25738
## 128 00AJ Ealing LB 2017 115 151.19707
## 129 00AK Enfield LB 2002 280 133.83536
## 130 00AK Enfield LB 2003 325 132.32659
## 131 00AK Enfield LB 2004 220 130.12617
## 132 00AK Enfield LB 2005 200 131.90885
## 133 00AK Enfield LB 2006 140 129.86229
## 134 00AK Enfield LB 2007 115 134.30080
## 135 00AK Enfield LB 2008 135 131.92173
## 136 00AK Enfield LB 2009 150 131.68574
## 137 00AK Enfield LB 2010 145 135.09038
## 138 00AK Enfield LB 2011 130 136.12939
## 139 00AK Enfield LB 2012 125 141.55552
## 140 00AK Enfield LB 2013 105 148.36355
## 141 00AK Enfield LB 2014 105 148.52828
## 142 00AK Enfield LB 2015 135 150.47241
## 143 00AK Enfield LB 2016 115 157.01575
## 144 00AK Enfield LB 2017 95 156.90391
## 145 00AL Greenwich LB 2002 145 93.08427
## 146 00AL Greenwich LB 2003 135 95.50657
## 147 00AL Greenwich LB 2004 105 94.76234
## 148 00AL Greenwich LB 2005 130 96.19915
## 149 00AL Greenwich LB 2006 130 95.24858
## 150 00AL Greenwich LB 2007 95 95.06782
## 151 00AL Greenwich LB 2008 115 93.91117
## 152 00AL Greenwich LB 2009 110 95.66462
## 153 00AL Greenwich LB 2010 105 94.47638
## 154 00AL Greenwich LB 2011 55 93.88183
## 155 00AL Greenwich LB 2012 70 95.78945
## 156 00AL Greenwich LB 2013 70 102.88199
## 157 00AL Greenwich LB 2014 95 100.93478
## 158 00AL Greenwich LB 2015 75 106.43542
## 159 00AL Greenwich LB 2016 60 103.61550
## 160 00AL Greenwich LB 2017 70 106.79074
## 161 00AM Hackney LB 2002 75 60.45032
## 162 00AM Hackney LB 2003 90 62.03323
## 163 00AM Hackney LB 2004 85 59.11611
## 164 00AM Hackney LB 2005 75 60.26316
## 165 00AM Hackney LB 2006 60 60.02569
## 166 00AM Hackney LB 2007 60 56.80582
## 167 00AM Hackney LB 2008 65 55.90461
## 168 00AM Hackney LB 2009 60 60.32715
## 169 00AM Hackney LB 2010 60 60.24071
## 170 00AM Hackney LB 2011 45 54.96643
## 171 00AM Hackney LB 2012 50 56.75521
## 172 00AM Hackney LB 2013 60 59.60444
## 173 00AM Hackney LB 2014 50 67.57641
## 174 00AM Hackney LB 2015 40 63.83055
## 175 00AM Hackney LB 2016 45 69.04958
## 176 00AM Hackney LB 2017 45 72.36973
## 177 00AN Hammersmith and Fulham LB 2002 90 58.83839
## 178 00AN Hammersmith and Fulham LB 2003 95 56.11742
## 179 00AN Hammersmith and Fulham LB 2004 75 55.96346
## 180 00AN Hammersmith and Fulham LB 2005 75 58.80328
## 181 00AN Hammersmith and Fulham LB 2006 50 56.96747
## 182 00AN Hammersmith and Fulham LB 2007 60 55.37670
## 183 00AN Hammersmith and Fulham LB 2008 60 56.07468
## 184 00AN Hammersmith and Fulham LB 2009 45 56.36159
## 185 00AN Hammersmith and Fulham LB 2010 50 55.04752
## 186 00AN Hammersmith and Fulham LB 2011 50 58.57225
## 187 00AN Hammersmith and Fulham LB 2012 45 59.62839
## 188 00AN Hammersmith and Fulham LB 2013 45 56.44735
## 189 00AN Hammersmith and Fulham LB 2014 25 59.18073
## 190 00AN Hammersmith and Fulham LB 2015 35 62.64239
## 191 00AN Hammersmith and Fulham LB 2016 45 62.88690
## 192 00AN Hammersmith and Fulham LB 2017 45 62.79923
## 193 00AP Haringey LB 2002 135 68.13201
## 194 00AP Haringey LB 2003 130 65.06498
## 195 00AP Haringey LB 2004 115 65.82028
## 196 00AP Haringey LB 2005 85 63.81601
## 197 00AP Haringey LB 2006 70 64.54239
## 198 00AP Haringey LB 2007 75 65.22992
## 199 00AP Haringey LB 2008 75 65.41261
## 200 00AP Haringey LB 2009 65 71.02610
## 201 00AP Haringey LB 2010 60 71.06489
## 202 00AP Haringey LB 2011 50 71.53648
## 203 00AP Haringey LB 2012 70 75.59372
## 204 00AP Haringey LB 2013 60 75.89492
## 205 00AP Haringey LB 2014 70 79.06026
## 206 00AP Haringey LB 2015 70 78.57267
## 207 00AP Haringey LB 2016 60 82.26590
## 208 00AP Haringey LB 2017 50 85.15006
## 209 00AQ Harrow LB 2002 160 109.72008
## 210 00AQ Harrow LB 2003 145 109.97021
## 211 00AQ Harrow LB 2004 140 109.69247
## 212 00AQ Harrow LB 2005 140 111.97121
## 213 00AQ Harrow LB 2006 130 112.18101
## 214 00AQ Harrow LB 2007 130 113.27610
## 215 00AQ Harrow LB 2008 130 114.36407
## 216 00AQ Harrow LB 2009 145 116.12924
## 217 00AQ Harrow LB 2010 115 116.34490
## 218 00AQ Harrow LB 2011 115 123.37209
## 219 00AQ Harrow LB 2012 140 127.07815
## 220 00AQ Harrow LB 2013 115 126.80853
## 221 00AQ Harrow LB 2014 110 134.55002
## 222 00AQ Harrow LB 2015 120 137.70714
## 223 00AQ Harrow LB 2016 85 142.04504
## 224 00AQ Harrow LB 2017 85 147.69866
## 225 00AR Havering LB 2002 215 118.92675
## 226 00AR Havering LB 2003 205 121.33074
## 227 00AR Havering LB 2004 195 121.30368
## 228 00AR Havering LB 2005 185 123.95837
## 229 00AR Havering LB 2006 210 126.48555
## 230 00AR Havering LB 2007 180 132.58972
## 231 00AR Havering LB 2008 210 133.61206
## 232 00AR Havering LB 2009 195 137.30928
## 233 00AR Havering LB 2010 175 145.55460
## 234 00AR Havering LB 2011 130 154.58800
## 235 00AR Havering LB 2012 150 156.39458
## 236 00AR Havering LB 2013 160 164.35091
## 237 00AR Havering LB 2014 140 167.14598
## 238 00AR Havering LB 2015 135 169.90476
## 239 00AR Havering LB 2016 155 177.26208
## 240 00AR Havering LB 2017 125 174.98248
## 241 00AS Hillingdon LB 2002 185 110.14953
## 242 00AS Hillingdon LB 2003 210 112.17180
## 243 00AS Hillingdon LB 2004 235 110.53903
## 244 00AS Hillingdon LB 2005 195 113.00675
## 245 00AS Hillingdon LB 2006 180 115.63764
## 246 00AS Hillingdon LB 2007 150 116.87421
## 247 00AS Hillingdon LB 2008 175 117.08438
## 248 00AS Hillingdon LB 2009 125 119.33712
## 249 00AS Hillingdon LB 2010 125 123.16316
## 250 00AS Hillingdon LB 2011 140 124.79865
## 251 00AS Hillingdon LB 2012 120 129.46952
## 252 00AS Hillingdon LB 2013 100 136.96244
## 253 00AS Hillingdon LB 2014 145 138.15811
## 254 00AS Hillingdon LB 2015 130 139.84951
## 255 00AS Hillingdon LB 2016 115 144.81172
## 256 00AS Hillingdon LB 2017 105 150.41088
## 257 00AT Hounslow LB 2002 175 78.15825
## 258 00AT Hounslow LB 2003 175 78.02397
## 259 00AT Hounslow LB 2004 180 76.73997
## 260 00AT Hounslow LB 2005 140 77.51717
## 261 00AT Hounslow LB 2006 105 77.24250
## 262 00AT Hounslow LB 2007 115 80.51607
## 263 00AT Hounslow LB 2008 110 80.26344
## 264 00AT Hounslow LB 2009 90 82.46222
## 265 00AT Hounslow LB 2010 100 88.78609
## 266 00AT Hounslow LB 2011 85 91.79945
## 267 00AT Hounslow LB 2012 110 92.56828
## 268 00AT Hounslow LB 2013 105 93.40885
## 269 00AT Hounslow LB 2014 75 99.01552
## 270 00AT Hounslow LB 2015 70 101.93057
## 271 00AT Hounslow LB 2016 85 106.15718
## 272 00AT Hounslow LB 2017 80 107.00771
## 273 00AU Islington LB 2002 90 54.01078
## 274 00AU Islington LB 2003 80 52.07970
## 275 00AU Islington LB 2004 90 55.06722
## 276 00AU Islington LB 2005 85 52.97473
## 277 00AU Islington LB 2006 70 56.33929
## 278 00AU Islington LB 2007 70 54.22774
## 279 00AU Islington LB 2008 80 56.10087
## 280 00AU Islington LB 2009 55 54.05497
## 281 00AU Islington LB 2010 55 57.98750
## 282 00AU Islington LB 2011 60 60.23208
## 283 00AU Islington LB 2012 65 59.86132
## 284 00AU Islington LB 2013 45 59.81503
## 285 00AU Islington LB 2014 35 67.35648
## 286 00AU Islington LB 2015 55 68.43987
## 287 00AU Islington LB 2016 35 68.22783
## 288 00AU Islington LB 2017 40 69.60882
## 289 00AW Kensington and Chelsea LB 2002 65 66.93928
## 290 00AW Kensington and Chelsea LB 2003 50 69.04127
## 291 00AW Kensington and Chelsea LB 2004 60 72.22469
## 292 00AW Kensington and Chelsea LB 2005 65 73.71013
## 293 00AW Kensington and Chelsea LB 2006 75 75.54444
## 294 00AW Kensington and Chelsea LB 2007 55 76.07282
## 295 00AW Kensington and Chelsea LB 2008 50 73.86673
## 296 00AW Kensington and Chelsea LB 2009 35 77.26684
## 297 00AW Kensington and Chelsea LB 2010 50 74.76524
## 298 00AW Kensington and Chelsea LB 2011 45 68.65119
## 299 00AW Kensington and Chelsea LB 2012 50 72.89844
## 300 00AW Kensington and Chelsea LB 2013 35 73.02217
## 301 00AW Kensington and Chelsea LB 2014 35 77.07258
## 302 00AW Kensington and Chelsea LB 2015 35 77.89263
## 303 00AW Kensington and Chelsea LB 2016 35 76.44792
## 304 00AW Kensington and Chelsea LB 2017 40 80.41312
## 305 00AX Kingston upon Thames LB 2002 145 74.50700
## 306 00AX Kingston upon Thames LB 2003 110 73.63105
## 307 00AX Kingston upon Thames LB 2004 120 72.63647
## 308 00AX Kingston upon Thames LB 2005 115 75.43929
## 309 00AX Kingston upon Thames LB 2006 125 76.88170
## 310 00AX Kingston upon Thames LB 2007 95 74.58847
## 311 00AX Kingston upon Thames LB 2008 115 74.98998
## 312 00AX Kingston upon Thames LB 2009 80 75.32382
## 313 00AX Kingston upon Thames LB 2010 95 80.06072
## 314 00AX Kingston upon Thames LB 2011 75 80.82511
## 315 00AX Kingston upon Thames LB 2012 85 82.03786
## 316 00AX Kingston upon Thames LB 2013 75 85.37485
## 317 00AX Kingston upon Thames LB 2014 55 86.18694
## 318 00AX Kingston upon Thames LB 2015 75 91.11042
## 319 00AX Kingston upon Thames LB 2016 60 90.18983
## 320 00AX Kingston upon Thames LB 2017 55 92.31882
## 321 00AY Lambeth LB 2002 120 75.10180
## 322 00AY Lambeth LB 2003 130 76.21719
## 323 00AY Lambeth LB 2004 90 75.03032
## 324 00AY Lambeth LB 2005 95 79.52035
## 325 00AY Lambeth LB 2006 85 78.70431
## 326 00AY Lambeth LB 2007 80 75.61849
## 327 00AY Lambeth LB 2008 85 78.73032
## 328 00AY Lambeth LB 2009 80 75.79230
## 329 00AY Lambeth LB 2010 65 80.14339
## 330 00AY Lambeth LB 2011 80 80.63869
## 331 00AY Lambeth LB 2012 65 80.71863
## 332 00AY Lambeth LB 2013 55 86.51586
## 333 00AY Lambeth LB 2014 45 91.54157
## 334 00AY Lambeth LB 2015 60 91.95536
## 335 00AY Lambeth LB 2016 60 96.29407
## 336 00AY Lambeth LB 2017 55 99.97014
## 337 00AZ Lewisham LB 2002 205 92.91298
## 338 00AZ Lewisham LB 2003 230 92.13936
## 339 00AZ Lewisham LB 2004 215 91.88525
## 340 00AZ Lewisham LB 2005 155 91.08775
## 341 00AZ Lewisham LB 2006 140 89.79631
## 342 00AZ Lewisham LB 2007 130 92.08085
## 343 00AZ Lewisham LB 2008 160 88.76289
## 344 00AZ Lewisham LB 2009 110 92.23044
## 345 00AZ Lewisham LB 2010 110 91.76377
## 346 00AZ Lewisham LB 2011 110 95.41592
## 347 00AZ Lewisham LB 2012 90 95.07460
## 348 00AZ Lewisham LB 2013 100 98.21977
## 349 00AZ Lewisham LB 2014 100 100.44436
## 350 00AZ Lewisham LB 2015 115 101.42288
## 351 00AZ Lewisham LB 2016 95 102.91664
## 352 00AZ Lewisham LB 2017 110 103.77244
## 353 00BA Merton LB 2002 130 84.50782
## 354 00BA Merton LB 2003 120 84.88187
## 355 00BA Merton LB 2004 105 84.79138
## 356 00BA Merton LB 2005 95 84.55571
## 357 00BA Merton LB 2006 100 86.64521
## 358 00BA Merton LB 2007 95 82.88176
## 359 00BA Merton LB 2008 105 84.47498
## 360 00BA Merton LB 2009 80 82.16341
## 361 00BA Merton LB 2010 75 85.41648
## 362 00BA Merton LB 2011 65 88.96472
## 363 00BA Merton LB 2012 75 85.52769
## 364 00BA Merton LB 2013 80 88.41638
## 365 00BA Merton LB 2014 75 91.37179
## 366 00BA Merton LB 2015 70 90.71387
## 367 00BA Merton LB 2016 50 90.08740
## 368 00BA Merton LB 2017 55 93.15565
## 369 00BB Newham LB 2002 150 67.61119
## 370 00BB Newham LB 2003 185 68.11669
## 371 00BB Newham LB 2004 135 66.58535
## 372 00BB Newham LB 2005 140 66.57255
## 373 00BB Newham LB 2006 100 67.10077
## 374 00BB Newham LB 2007 95 67.54247
## 375 00BB Newham LB 2008 85 66.91325
## 376 00BB Newham LB 2009 80 68.12005
## 377 00BB Newham LB 2010 70 69.30760
## 378 00BB Newham LB 2011 65 67.55486
## 379 00BB Newham LB 2012 75 73.30519
## 380 00BB Newham LB 2013 75 72.77730
## 381 00BB Newham LB 2014 50 75.71859
## 382 00BB Newham LB 2015 60 79.33948
## 383 00BB Newham LB 2016 50 79.34547
## 384 00BB Newham LB 2017 55 87.68712
## 385 00BC Redbridge LB 2002 200 116.37599
## 386 00BC Redbridge LB 2003 220 116.16727
## 387 00BC Redbridge LB 2004 185 113.66519
## 388 00BC Redbridge LB 2005 185 115.70444
## 389 00BC Redbridge LB 2006 165 117.42380
## 390 00BC Redbridge LB 2007 145 114.52570
## 391 00BC Redbridge LB 2008 130 117.13622
## 392 00BC Redbridge LB 2009 120 116.07396
## 393 00BC Redbridge LB 2010 140 124.28478
## 394 00BC Redbridge LB 2011 110 128.76208
## 395 00BC Redbridge LB 2012 160 130.70472
## 396 00BC Redbridge LB 2013 145 131.74465
## 397 00BC Redbridge LB 2014 105 135.97021
## 398 00BC Redbridge LB 2015 135 137.85263
## 399 00BC Redbridge LB 2016 110 136.23859
## 400 00BC Redbridge LB 2017 100 143.60074
## 401 00BD Richmond upon Thames LB 2002 170 89.47232
## 402 00BD Richmond upon Thames LB 2003 160 87.68681
## 403 00BD Richmond upon Thames LB 2004 120 90.47612
## 404 00BD Richmond upon Thames LB 2005 110 91.25316
## 405 00BD Richmond upon Thames LB 2006 95 91.27449
## 406 00BD Richmond upon Thames LB 2007 100 92.80792
## 407 00BD Richmond upon Thames LB 2008 100 91.22508
## 408 00BD Richmond upon Thames LB 2009 85 93.86838
## 409 00BD Richmond upon Thames LB 2010 80 96.00272
## 410 00BD Richmond upon Thames LB 2011 80 98.68143
## 411 00BD Richmond upon Thames LB 2012 80 102.68545
## 412 00BD Richmond upon Thames LB 2013 100 106.45698
## 413 00BD Richmond upon Thames LB 2014 50 109.98271
## 414 00BD Richmond upon Thames LB 2015 90 112.54213
## 415 00BD Richmond upon Thames LB 2016 75 113.25967
## 416 00BD Richmond upon Thames LB 2017 65 111.69954
## 417 00BE Southwark LB 2002 125 80.62918
## 418 00BE Southwark LB 2003 115 80.26744
## 419 00BE Southwark LB 2004 105 82.50461
## 420 00BE Southwark LB 2005 105 80.31601
## 421 00BE Southwark LB 2006 85 80.74768
## 422 00BE Southwark LB 2007 75 81.47041
## 423 00BE Southwark LB 2008 100 83.66066
## 424 00BE Southwark LB 2009 75 78.92541
## 425 00BE Southwark LB 2010 70 79.90387
## 426 00BE Southwark LB 2011 80 80.01711
## 427 00BE Southwark LB 2012 65 81.46215
## 428 00BE Southwark LB 2013 60 84.81337
## 429 00BE Southwark LB 2014 55 85.28102
## 430 00BE Southwark LB 2015 45 88.87117
## 431 00BE Southwark LB 2016 40 93.56699
## 432 00BE Southwark LB 2017 55 93.95049
## 433 00BF Sutton LB 2002 150 92.57903
## 434 00BF Sutton LB 2003 135 94.14728
## 435 00BF Sutton LB 2004 150 93.18643
## 436 00BF Sutton LB 2005 125 92.46013
## 437 00BF Sutton LB 2006 145 94.77750
## 438 00BF Sutton LB 2007 130 94.76305
## 439 00BF Sutton LB 2008 135 95.24212
## 440 00BF Sutton LB 2009 115 95.00735
## 441 00BF Sutton LB 2010 95 95.62776
## 442 00BF Sutton LB 2011 95 101.33427
## 443 00BF Sutton LB 2012 80 103.54851
## 444 00BF Sutton LB 2013 85 106.75656
## 445 00BF Sutton LB 2014 105 107.61864
## 446 00BF Sutton LB 2015 95 110.40133
## 447 00BF Sutton LB 2016 80 110.23793
## 448 00BF Sutton LB 2017 95 111.20362
## 449 00BG Tower Hamlets LB 2002 90 51.04455
## 450 00BG Tower Hamlets LB 2003 85 50.44849
## 451 00BG Tower Hamlets LB 2004 60 52.07728
## 452 00BG Tower Hamlets LB 2005 70 49.41715
## 453 00BG Tower Hamlets LB 2006 75 50.64812
## 454 00BG Tower Hamlets LB 2007 55 50.64856
## 455 00BG Tower Hamlets LB 2008 70 50.80428
## 456 00BG Tower Hamlets LB 2009 35 50.81744
## 457 00BG Tower Hamlets LB 2010 45 50.06191
## 458 00BG Tower Hamlets LB 2011 45 53.90459
## 459 00BG Tower Hamlets LB 2012 40 52.14995
## 460 00BG Tower Hamlets LB 2013 40 55.72720
## 461 00BG Tower Hamlets LB 2014 50 59.36122
## 462 00BG Tower Hamlets LB 2015 40 60.83124
## 463 00BG Tower Hamlets LB 2016 45 65.80714
## 464 00BG Tower Hamlets LB 2017 50 67.84468
## 465 00BH Waltham Forest LB 2002 185 90.86921
## 466 00BH Waltham Forest LB 2003 250 88.64457
## 467 00BH Waltham Forest LB 2004 180 88.64943
## 468 00BH Waltham Forest LB 2005 175 86.48480
## 469 00BH Waltham Forest LB 2006 140 86.24377
## 470 00BH Waltham Forest LB 2007 130 84.06329
## 471 00BH Waltham Forest LB 2008 115 84.79032
## 472 00BH Waltham Forest LB 2009 110 88.80348
## 473 00BH Waltham Forest LB 2010 100 91.20133
## 474 00BH Waltham Forest LB 2011 100 95.94028
## 475 00BH Waltham Forest LB 2012 95 95.53169
## 476 00BH Waltham Forest LB 2013 85 96.32002
## 477 00BH Waltham Forest LB 2014 75 101.40374
## 478 00BH Waltham Forest LB 2015 85 103.36599
## 479 00BH Waltham Forest LB 2016 80 104.77755
## 480 00BH Waltham Forest LB 2017 75 107.99936
## 481 00BJ Wandsworth LB 2002 170 101.12825
## 482 00BJ Wandsworth LB 2003 215 99.24273
## 483 00BJ Wandsworth LB 2004 160 99.15271
## 484 00BJ Wandsworth LB 2005 155 97.71343
## 485 00BJ Wandsworth LB 2006 160 98.66406
## 486 00BJ Wandsworth LB 2007 150 98.80609
## 487 00BJ Wandsworth LB 2008 110 97.63377
## 488 00BJ Wandsworth LB 2009 100 95.68481
## 489 00BJ Wandsworth LB 2010 85 94.99878
## 490 00BJ Wandsworth LB 2011 90 99.74375
## 491 00BJ Wandsworth LB 2012 105 99.62557
## 492 00BJ Wandsworth LB 2013 65 99.45516
## 493 00BJ Wandsworth LB 2014 50 99.90018
## 494 00BJ Wandsworth LB 2015 85 104.95988
## 495 00BJ Wandsworth LB 2016 70 104.28189
## 496 00BJ Wandsworth LB 2017 65 105.58824
## 497 00BK Westminster LB 2002 110 81.97499
## 498 00BK Westminster LB 2003 100 80.66074
## 499 00BK Westminster LB 2004 100 78.13770
## 500 00BK Westminster LB 2005 95 84.10169
## 501 00BK Westminster LB 2006 70 81.28095
## 502 00BK Westminster LB 2007 65 81.46215
## 503 00BK Westminster LB 2008 40 81.42938
## 504 00BK Westminster LB 2009 55 82.58543
## 505 00BK Westminster LB 2010 75 86.79189
## 506 00BK Westminster LB 2011 45 81.87871
## 507 00BK Westminster LB 2012 50 91.90711
## 508 00BK Westminster LB 2013 50 95.68481
## 509 00BK Westminster LB 2014 60 100.13574
## 510 00BK Westminster LB 2015 60 97.43219
## 511 00BK Westminster LB 2016 50 101.18409
## 512 00BK Westminster LB 2017 40 103.06304
## 513 00BL Bolton MCD 2002 220 122.80738
## 514 00BL Bolton MCD 2003 260 123.67670
## 515 00BL Bolton MCD 2004 260 123.94174
## 516 00BL Bolton MCD 2005 235 125.59260
## 517 00BL Bolton MCD 2006 215 124.70549
## 518 00BL Bolton MCD 2007 220 127.55282
## 519 00BL Bolton MCD 2008 195 126.95017
## 520 00BL Bolton MCD 2009 185 130.66170
## 521 00BL Bolton MCD 2010 150 133.51750
## 522 00BL Bolton MCD 2011 160 139.60771
## 523 00BL Bolton MCD 2012 140 144.81544
## 524 00BL Bolton MCD 2013 150 142.93190
## 525 00BL Bolton MCD 2014 135 147.30900
## 526 00BL Bolton MCD 2015 165 149.38365
## 527 00BL Bolton MCD 2016 160 150.97222
## 528 00BL Bolton MCD 2017 165 153.90771
## 529 00BM Bury MCD 2002 130 87.18926
## 530 00BM Bury MCD 2003 90 84.32571
## 531 00BM Bury MCD 2004 120 88.34671
## 532 00BM Bury MCD 2005 120 90.52969
## 533 00BM Bury MCD 2006 110 89.91715
## 534 00BM Bury MCD 2007 115 90.02903
## 535 00BM Bury MCD 2008 95 90.21071
## 536 00BM Bury MCD 2009 100 92.27019
## 537 00BM Bury MCD 2010 95 96.15266
## 538 00BM Bury MCD 2011 65 96.73036
## 539 00BM Bury MCD 2012 80 98.55131
## 540 00BM Bury MCD 2013 65 99.74921
## 541 00BM Bury MCD 2014 80 104.89518
## 542 00BM Bury MCD 2015 95 107.92232
## 543 00BM Bury MCD 2016 75 106.74891
## 544 00BM Bury MCD 2017 90 112.76350
## 545 00BN Manchester MCD 2002 325 175.39758
## 546 00BN Manchester MCD 2003 325 176.97878
## 547 00BN Manchester MCD 2004 315 176.50576
## 548 00BN Manchester MCD 2005 360 176.93820
## 549 00BN Manchester MCD 2006 325 178.09294
## 550 00BN Manchester MCD 2007 275 175.02380
## 551 00BN Manchester MCD 2008 365 170.76547
## 552 00BN Manchester MCD 2009 275 170.06527
## 553 00BN Manchester MCD 2010 190 169.11142
## 554 00BN Manchester MCD 2011 190 167.45232
## 555 00BN Manchester MCD 2012 205 171.99720
## 556 00BN Manchester MCD 2013 175 173.36699
## 557 00BN Manchester MCD 2014 165 174.10658
## 558 00BN Manchester MCD 2015 175 170.26169
## 559 00BN Manchester MCD 2016 170 174.84070
## 560 00BN Manchester MCD 2017 175 175.30017
## 561 00BP Oldham MCD 2002 155 100.41928
## 562 00BP Oldham MCD 2003 155 100.00320
## 563 00BP Oldham MCD 2004 145 100.15425
## 564 00BP Oldham MCD 2005 145 100.68025
## 565 00BP Oldham MCD 2006 150 104.28633
## 566 00BP Oldham MCD 2007 110 104.51116
## 567 00BP Oldham MCD 2008 135 101.44180
## 568 00BP Oldham MCD 2009 140 103.74152
## 569 00BP Oldham MCD 2010 95 107.34798
## 570 00BP Oldham MCD 2011 95 112.76721
## 571 00BP Oldham MCD 2012 100 112.05819
## 572 00BP Oldham MCD 2013 105 114.76132
## 573 00BP Oldham MCD 2014 115 117.66150
## 574 00BP Oldham MCD 2015 115 115.16433
## 575 00BP Oldham MCD 2016 105 116.92250
## 576 00BP Oldham MCD 2017 100 119.38999
## 577 00BQ Rochdale MCD 2002 115 91.21114
## 578 00BQ Rochdale MCD 2003 145 92.48268
## 579 00BQ Rochdale MCD 2004 130 93.89854
## 580 00BQ Rochdale MCD 2005 130 93.38833
## 581 00BQ Rochdale MCD 2006 115 93.89476
## 582 00BQ Rochdale MCD 2007 130 94.73348
## 583 00BQ Rochdale MCD 2008 115 95.10827
## 584 00BQ Rochdale MCD 2009 95 98.44201
## 585 00BQ Rochdale MCD 2010 95 99.07201
## 586 00BQ Rochdale MCD 2011 65 99.22765
## 587 00BQ Rochdale MCD 2012 70 103.69765
## 588 00BQ Rochdale MCD 2013 95 106.47230
## 589 00BQ Rochdale MCD 2014 95 109.34946
## 590 00BQ Rochdale MCD 2015 85 110.48972
## 591 00BQ Rochdale MCD 2016 95 115.49663
## 592 00BQ Rochdale MCD 2017 120 114.36107
## 593 00BR Salford MCD 2002 200 106.97299
## 594 00BR Salford MCD 2003 220 106.68463
## 595 00BR Salford MCD 2004 165 105.12887
## 596 00BR Salford MCD 2005 190 106.95988
## 597 00BR Salford MCD 2006 205 110.88306
## 598 00BR Salford MCD 2007 210 109.79068
## 599 00BR Salford MCD 2008 250 108.95998
## 600 00BR Salford MCD 2009 215 111.46496
## 601 00BR Salford MCD 2010 170 113.83694
## 602 00BR Salford MCD 2011 110 115.52305
## 603 00BR Salford MCD 2012 115 119.15783
## 604 00BR Salford MCD 2013 130 118.60032
## 605 00BR Salford MCD 2014 120 122.46429
## 606 00BR Salford MCD 2015 130 123.95017
## 607 00BR Salford MCD 2016 115 124.22798
## 608 00BR Salford MCD 2017 120 127.80663
## 609 00BS Stockport MCD 2002 205 151.41882
## 610 00BS Stockport MCD 2003 185 152.49629
## 611 00BS Stockport MCD 2004 150 152.20473
## 612 00BS Stockport MCD 2005 170 157.07651
## 613 00BS Stockport MCD 2006 165 158.70346
## 614 00BS Stockport MCD 2007 140 161.30556
## 615 00BS Stockport MCD 2008 135 165.34605
## 616 00BS Stockport MCD 2009 110 166.70700
## 617 00BS Stockport MCD 2010 115 172.41999
## 618 00BS Stockport MCD 2011 135 180.23145
## 619 00BS Stockport MCD 2012 115 180.33005
## 620 00BS Stockport MCD 2013 125 190.20082
## 621 00BS Stockport MCD 2014 105 193.18231
## 622 00BS Stockport MCD 2015 150 195.70799
## 623 00BS Stockport MCD 2016 125 203.00725
## 624 00BS Stockport MCD 2017 125 200.45195
## 625 00BT Tameside MCD 2002 185 99.91096
## 626 00BT Tameside MCD 2003 155 102.00852
## 627 00BT Tameside MCD 2004 140 100.71661
## 628 00BT Tameside MCD 2005 170 105.26597
## 629 00BT Tameside MCD 2006 160 105.84090
## 630 00BT Tameside MCD 2007 150 104.75927
## 631 00BT Tameside MCD 2008 155 104.20078
## 632 00BT Tameside MCD 2009 120 106.63789
## 633 00BT Tameside MCD 2010 85 107.09249
## 634 00BT Tameside MCD 2011 105 110.75340
## 635 00BT Tameside MCD 2012 105 115.39128
## 636 00BT Tameside MCD 2013 135 115.33802
## 637 00BT Tameside MCD 2014 85 120.65124
## 638 00BT Tameside MCD 2015 115 117.13130
## 639 00BT Tameside MCD 2016 110 120.98098
## 640 00BT Tameside MCD 2017 125 120.66884
## 641 00BU Trafford MCD 2002 130 109.62929
## 642 00BU Trafford MCD 2003 130 109.10406
## 643 00BU Trafford MCD 2004 130 113.30428
## 644 00BU Trafford MCD 2005 120 112.56222
## 645 00BU Trafford MCD 2006 125 117.26016
## 646 00BU Trafford MCD 2007 120 116.51629
## 647 00BU Trafford MCD 2008 110 120.88611
## 648 00BU Trafford MCD 2009 110 122.02483
## 649 00BU Trafford MCD 2010 110 127.30528
## 650 00BU Trafford MCD 2011 125 131.53248
## 651 00BU Trafford MCD 2012 115 134.18898
## 652 00BU Trafford MCD 2013 130 138.10033
## 653 00BU Trafford MCD 2014 100 145.96393
## 654 00BU Trafford MCD 2015 110 142.86744
## 655 00BU Trafford MCD 2016 95 147.74494
## 656 00BU Trafford MCD 2017 110 154.46289
## 657 00BW Wigan MCD 2002 200 127.07650
## 658 00BW Wigan MCD 2003 255 126.68188
## 659 00BW Wigan MCD 2004 260 130.23229
## 660 00BW Wigan MCD 2005 230 132.11539
## 661 00BW Wigan MCD 2006 195 135.07634
## 662 00BW Wigan MCD 2007 235 136.57733
## 663 00BW Wigan MCD 2008 230 137.61503
## 664 00BW Wigan MCD 2009 210 144.33248
## 665 00BW Wigan MCD 2010 215 147.21304
## 666 00BW Wigan MCD 2011 165 153.93845
## 667 00BW Wigan MCD 2012 185 155.58959
## 668 00BW Wigan MCD 2013 205 160.52240
## 669 00BW Wigan MCD 2014 150 166.05573
## 670 00BW Wigan MCD 2015 175 170.21442
## 671 00BW Wigan MCD 2016 195 170.98795
## 672 00BW Wigan MCD 2017 255 175.91657
## 673 00BX Knowsley MCD 2002 105 56.27681
## 674 00BX Knowsley MCD 2003 85 58.12950
## 675 00BX Knowsley MCD 2004 100 58.31147
## 676 00BX Knowsley MCD 2005 80 59.13703
## 677 00BX Knowsley MCD 2006 80 60.70936
## 678 00BX Knowsley MCD 2007 70 61.74733
## 679 00BX Knowsley MCD 2008 85 62.93600
## 680 00BX Knowsley MCD 2009 75 66.96290
## 681 00BX Knowsley MCD 2010 80 66.80091
## 682 00BX Knowsley MCD 2011 75 67.12970
## 683 00BX Knowsley MCD 2012 75 74.91979
## 684 00BX Knowsley MCD 2013 90 75.54715
## 685 00BX Knowsley MCD 2014 75 76.80866
## 686 00BX Knowsley MCD 2015 85 79.07001
## 687 00BX Knowsley MCD 2016 90 81.37684
## 688 00BX Knowsley MCD 2017 85 82.99239
## 689 00BY Liverpool MCD 2002 415 193.84090
## 690 00BY Liverpool MCD 2003 415 193.47334
## 691 00BY Liverpool MCD 2004 335 193.24479
## 692 00BY Liverpool MCD 2005 325 194.68044
## 693 00BY Liverpool MCD 2006 290 196.54024
## 694 00BY Liverpool MCD 2007 265 198.19133
## 695 00BY Liverpool MCD 2008 275 196.64502
## 696 00BY Liverpool MCD 2009 230 200.31193
## 697 00BY Liverpool MCD 2010 285 208.50896
## 698 00BY Liverpool MCD 2011 215 210.30287
## 699 00BY Liverpool MCD 2012 215 217.89191
## 700 00BY Liverpool MCD 2013 255 219.53367
## 701 00BY Liverpool MCD 2014 155 227.66686
## 702 00BY Liverpool MCD 2015 195 228.05052
## 703 00BY Liverpool MCD 2016 205 233.05503
## 704 00BY Liverpool MCD 2017 195 237.81475
## 705 00BZ St. Helens MCD 2002 130 78.14943
## 706 00BZ St. Helens MCD 2003 100 78.87655
## 707 00BZ St. Helens MCD 2004 95 80.67198
## 708 00BZ St. Helens MCD 2005 105 83.14797
## 709 00BZ St. Helens MCD 2006 105 86.47057
## 710 00BZ St. Helens MCD 2007 100 85.31075
## 711 00BZ St. Helens MCD 2008 105 85.62025
## 712 00BZ St. Helens MCD 2009 125 87.43447
## 713 00BZ St. Helens MCD 2010 130 91.14111
## 714 00BZ St. Helens MCD 2011 125 96.81384
## 715 00BZ St. Helens MCD 2012 95 98.48570
## 716 00BZ St. Helens MCD 2013 120 100.85035
## 717 00BZ St. Helens MCD 2014 95 105.38508
## 718 00BZ St. Helens MCD 2015 115 105.85980
## 719 00BZ St. Helens MCD 2016 125 108.39364
## 720 00BZ St. Helens MCD 2017 95 107.38262
## 721 00CA Sefton MCD 2002 215 169.50826
## 722 00CA Sefton MCD 2003 210 166.94686
## 723 00CA Sefton MCD 2004 200 168.24535
## 724 00CA Sefton MCD 2005 185 172.07071
## 725 00CA Sefton MCD 2006 145 178.32642
## 726 00CA Sefton MCD 2007 160 181.05939
## 727 00CA Sefton MCD 2008 150 181.59118
## 728 00CA Sefton MCD 2009 155 182.45859
## 729 00CA Sefton MCD 2010 165 191.74968
## 730 00CA Sefton MCD 2011 130 195.95779
## 731 00CA Sefton MCD 2012 150 207.30764
## 732 00CA Sefton MCD 2013 165 208.86184
## 733 00CA Sefton MCD 2014 135 212.07147
## 734 00CA Sefton MCD 2015 130 216.23971
## 735 00CA Sefton MCD 2016 150 219.97693
## 736 00CA Sefton MCD 2017 150 230.41757
## 737 00CB Wirral MCD 2002 205 186.82899
## 738 00CB Wirral MCD 2003 265 186.82509
## 739 00CB Wirral MCD 2004 215 187.83176
## 740 00CB Wirral MCD 2005 190 192.12493
## 741 00CB Wirral MCD 2006 205 197.24472
## 742 00CB Wirral MCD 2007 245 199.00476
## 743 00CB Wirral MCD 2008 235 199.01433
## 744 00CB Wirral MCD 2009 235 205.54795
## 745 00CB Wirral MCD 2010 210 207.99628
## 746 00CB Wirral MCD 2011 200 216.49925
## 747 00CB Wirral MCD 2012 200 223.17058
## 748 00CB Wirral MCD 2013 185 224.71954
## 749 00CB Wirral MCD 2014 160 227.70788
## 750 00CB Wirral MCD 2015 245 229.99928
## 751 00CB Wirral MCD 2016 215 237.90046
## 752 00CB Wirral MCD 2017 190 236.82819
## 753 00CC Barnsley MCD 2002 195 107.06090
## 754 00CC Barnsley MCD 2003 215 108.79646
## 755 00CC Barnsley MCD 2004 180 109.03006
## 756 00CC Barnsley MCD 2005 195 111.56730
## 757 00CC Barnsley MCD 2006 195 113.92543
## 758 00CC Barnsley MCD 2007 220 113.16129
## 759 00CC Barnsley MCD 2008 180 116.47594
## 760 00CC Barnsley MCD 2009 200 118.40146
## 761 00CC Barnsley MCD 2010 175 120.30067
## 762 00CC Barnsley MCD 2011 170 126.07851
## 763 00CC Barnsley MCD 2012 125 128.22997
## 764 00CC Barnsley MCD 2013 150 133.96848
## 765 00CC Barnsley MCD 2014 120 136.56648
## 766 00CC Barnsley MCD 2015 125 142.81343
## 767 00CC Barnsley MCD 2016 115 145.60983
## 768 00CC Barnsley MCD 2017 115 149.18167
## 769 00CE Doncaster MCD 2002 200 135.87354
## 770 00CE Doncaster MCD 2003 170 137.59844
## 771 00CE Doncaster MCD 2004 195 139.15518
## 772 00CE Doncaster MCD 2005 165 145.92386
## 773 00CE Doncaster MCD 2006 190 148.89333
## 774 00CE Doncaster MCD 2007 190 150.44973
## 775 00CE Doncaster MCD 2008 160 150.51618
## 776 00CE Doncaster MCD 2009 185 156.78455
## 777 00CE Doncaster MCD 2010 165 161.82444
## 778 00CE Doncaster MCD 2011 200 171.36215
## 779 00CE Doncaster MCD 2012 195 174.48151
## 780 00CE Doncaster MCD 2013 185 177.59894
## 781 00CE Doncaster MCD 2014 155 181.93898
## 782 00CE Doncaster MCD 2015 190 183.73305
## 783 00CE Doncaster MCD 2016 160 189.07492
## 784 00CE Doncaster MCD 2017 180 190.66662
## 785 00CF Rotherham MCD 2002 195 117.82053
## 786 00CF Rotherham MCD 2003 200 121.73910
## 787 00CF Rotherham MCD 2004 195 123.65851
## 788 00CF Rotherham MCD 2005 240 124.64272
## 789 00CF Rotherham MCD 2006 210 128.95751
## 790 00CF Rotherham MCD 2007 190 129.32437
## 791 00CF Rotherham MCD 2008 215 130.54067
## 792 00CF Rotherham MCD 2009 230 133.84906
## 793 00CF Rotherham MCD 2010 170 139.64709
## 794 00CF Rotherham MCD 2011 190 147.02702
## 795 00CF Rotherham MCD 2012 215 149.41036
## 796 00CF Rotherham MCD 2013 175 151.37642
## 797 00CF Rotherham MCD 2014 150 153.51636
## 798 00CF Rotherham MCD 2015 160 155.06497
## 799 00CF Rotherham MCD 2016 165 162.47256
## 800 00CF Rotherham MCD 2017 145 165.44777
## 801 00CG Sheffield MCD 2002 395 279.20552
## 802 00CG Sheffield MCD 2003 395 278.01359
## 803 00CG Sheffield MCD 2004 420 280.68091
## 804 00CG Sheffield MCD 2005 425 283.36023
## 805 00CG Sheffield MCD 2006 325 287.55281
## 806 00CG Sheffield MCD 2007 355 290.32264
## 807 00CG Sheffield MCD 2008 290 289.73116
## 808 00CG Sheffield MCD 2009 230 295.78960
## 809 00CG Sheffield MCD 2010 200 298.10671
## 810 00CG Sheffield MCD 2011 170 308.03975
## 811 00CG Sheffield MCD 2012 195 311.38666
## 812 00CG Sheffield MCD 2013 185 314.52012
## 813 00CG Sheffield MCD 2014 130 318.94600
## 814 00CG Sheffield MCD 2015 140 330.90901
## 815 00CG Sheffield MCD 2016 135 331.09723
## 816 00CG Sheffield MCD 2017 155 327.92414
## 817 00CH Gateshead MCD 2002 155 96.39520
## 818 00CH Gateshead MCD 2003 150 97.13504
## 819 00CH Gateshead MCD 2004 165 97.94601
## 820 00CH Gateshead MCD 2005 160 99.05635
## 821 00CH Gateshead MCD 2006 110 99.96366
## 822 00CH Gateshead MCD 2007 120 106.23371
## 823 00CH Gateshead MCD 2008 145 105.57643
## 824 00CH Gateshead MCD 2009 130 105.31967
## 825 00CH Gateshead MCD 2010 145 109.95831
## 826 00CH Gateshead MCD 2011 100 112.46286
## 827 00CH Gateshead MCD 2012 95 117.46336
## 828 00CH Gateshead MCD 2013 110 118.37055
## 829 00CH Gateshead MCD 2014 95 123.19142
## 830 00CH Gateshead MCD 2015 85 124.73191
## 831 00CH Gateshead MCD 2016 80 127.71927
## 832 00CH Gateshead MCD 2017 85 132.66396
## 833 00CJ Newcastle upon Tyne MCD 2002 185 130.81993
## 834 00CJ Newcastle upon Tyne MCD 2003 170 131.76149
## 835 00CJ Newcastle upon Tyne MCD 2004 185 135.18560
## 836 00CJ Newcastle upon Tyne MCD 2005 180 138.00095
## 837 00CJ Newcastle upon Tyne MCD 2006 190 137.01036
## 838 00CJ Newcastle upon Tyne MCD 2007 140 136.94141
## 839 00CJ Newcastle upon Tyne MCD 2008 150 138.80742
## 840 00CJ Newcastle upon Tyne MCD 2009 115 137.32188
## 841 00CJ Newcastle upon Tyne MCD 2010 115 143.44545
## 842 00CJ Newcastle upon Tyne MCD 2011 110 141.62054
## 843 00CJ Newcastle upon Tyne MCD 2012 115 148.57653
## 844 00CJ Newcastle upon Tyne MCD 2013 100 149.41888
## 845 00CJ Newcastle upon Tyne MCD 2014 125 149.68381
## 846 00CJ Newcastle upon Tyne MCD 2015 145 152.44032
## 847 00CJ Newcastle upon Tyne MCD 2016 105 151.07491
## 848 00CJ Newcastle upon Tyne MCD 2017 110 153.66224
## 849 00CK North Tyneside MCD 2002 185 105.09077
## 850 00CK North Tyneside MCD 2003 175 106.36002
## 851 00CK North Tyneside MCD 2004 175 108.16130
## 852 00CK North Tyneside MCD 2005 155 108.75529
## 853 00CK North Tyneside MCD 2006 150 110.96972
## 854 00CK North Tyneside MCD 2007 155 113.42922
## 855 00CK North Tyneside MCD 2008 130 114.66639
## 856 00CK North Tyneside MCD 2009 100 117.87364
## 857 00CK North Tyneside MCD 2010 100 121.55431
## 858 00CK North Tyneside MCD 2011 110 124.84124
## 859 00CK North Tyneside MCD 2012 90 126.63250
## 860 00CK North Tyneside MCD 2013 105 126.33894
## 861 00CK North Tyneside MCD 2014 115 131.07846
## 862 00CK North Tyneside MCD 2015 110 132.91426
## 863 00CK North Tyneside MCD 2016 105 133.00819
## 864 00CK North Tyneside MCD 2017 105 135.36979
## 865 00CL South Tyneside MCD 2002 115 77.36221
## 866 00CL South Tyneside MCD 2003 80 77.53785
## 867 00CL South Tyneside MCD 2004 105 80.93002
## 868 00CL South Tyneside MCD 2005 135 82.44964
## 869 00CL South Tyneside MCD 2006 90 84.71653
## 870 00CL South Tyneside MCD 2007 90 85.15696
## 871 00CL South Tyneside MCD 2008 75 85.93326
## 872 00CL South Tyneside MCD 2009 80 91.02953
## 873 00CL South Tyneside MCD 2010 80 93.29448
## 874 00CL South Tyneside MCD 2011 85 91.62998
## 875 00CL South Tyneside MCD 2012 75 93.67645
## 876 00CL South Tyneside MCD 2013 70 97.67796
## 877 00CL South Tyneside MCD 2014 55 102.06168
## 878 00CL South Tyneside MCD 2015 85 101.40374
## 879 00CL South Tyneside MCD 2016 65 97.14299
## 880 00CL South Tyneside MCD 2017 75 101.46247
## 881 00CM Sunderland MCD 2002 185 118.78445
## 882 00CM Sunderland MCD 2003 170 121.63064
## 883 00CM Sunderland MCD 2004 185 121.43845
## 884 00CM Sunderland MCD 2005 150 123.52212
## 885 00CM Sunderland MCD 2006 170 126.29238
## 886 00CM Sunderland MCD 2007 180 130.87680
## 887 00CM Sunderland MCD 2008 185 131.79754
## 888 00CM Sunderland MCD 2009 120 137.30238
## 889 00CM Sunderland MCD 2010 190 141.06057
## 890 00CM Sunderland MCD 2011 145 147.73024
## 891 00CM Sunderland MCD 2012 190 148.19722
## 892 00CM Sunderland MCD 2013 135 148.13950
## 893 00CM Sunderland MCD 2014 130 153.09408
## 894 00CM Sunderland MCD 2015 160 156.01444
## 895 00CM Sunderland MCD 2016 125 159.45290
## 896 00CM Sunderland MCD 2017 140 162.54843
## 897 00CN Birmingham MCD 2002 595 457.54653
## 898 00CN Birmingham MCD 2003 680 458.45847
## 899 00CN Birmingham MCD 2004 640 458.04391
## 900 00CN Birmingham MCD 2005 620 467.56056
## 901 00CN Birmingham MCD 2006 595 475.36218
## 902 00CN Birmingham MCD 2007 550 473.32954
## 903 00CN Birmingham MCD 2008 555 470.60980
## 904 00CN Birmingham MCD 2009 450 477.31596
## 905 00CN Birmingham MCD 2010 475 488.95610
## 906 00CN Birmingham MCD 2011 450 497.53834
## 907 00CN Birmingham MCD 2012 420 506.22504
## 908 00CN Birmingham MCD 2013 460 516.79000
## 909 00CN Birmingham MCD 2014 415 527.46314
## 910 00CN Birmingham MCD 2015 465 530.35798
## 911 00CN Birmingham MCD 2016 465 539.62475
## 912 00CN Birmingham MCD 2017 470 548.28756
## 913 00CQ Coventry MCD 2002 190 145.81126
## 914 00CQ Coventry MCD 2003 220 148.01859
## 915 00CQ Coventry MCD 2004 180 150.43651
## 916 00CQ Coventry MCD 2005 190 155.27521
## 917 00CQ Coventry MCD 2006 165 157.22509
## 918 00CQ Coventry MCD 2007 140 158.58063
## 919 00CQ Coventry MCD 2008 155 157.76943
## 920 00CQ Coventry MCD 2009 130 161.19444
## 921 00CQ Coventry MCD 2010 135 168.33255
## 922 00CQ Coventry MCD 2011 120 166.02622
## 923 00CQ Coventry MCD 2012 130 171.52995
## 924 00CQ Coventry MCD 2013 135 175.07769
## 925 00CQ Coventry MCD 2014 130 180.19976
## 926 00CQ Coventry MCD 2015 125 183.75638
## 927 00CQ Coventry MCD 2016 110 179.83430
## 928 00CQ Coventry MCD 2017 115 182.28816
## 929 00CR Dudley MCD 2002 205 150.42776
## 930 00CR Dudley MCD 2003 215 152.34145
## 931 00CR Dudley MCD 2004 180 155.80725
## 932 00CR Dudley MCD 2005 200 156.39749
## 933 00CR Dudley MCD 2006 145 160.91460
## 934 00CR Dudley MCD 2007 175 161.11217
## 935 00CR Dudley MCD 2008 185 165.54431
## 936 00CR Dudley MCD 2009 160 173.26632
## 937 00CR Dudley MCD 2010 175 178.84120
## 938 00CR Dudley MCD 2011 150 187.45314
## 939 00CR Dudley MCD 2012 135 195.60479
## 940 00CR Dudley MCD 2013 135 194.19930
## 941 00CR Dudley MCD 2014 125 203.26637
## 942 00CR Dudley MCD 2015 155 204.99901
## 943 00CR Dudley MCD 2016 115 208.16451
## 944 00CR Dudley MCD 2017 140 216.83903
## 945 00CS Sandwell MCD 2002 205 139.38525
## 946 00CS Sandwell MCD 2003 195 136.85544
## 947 00CS Sandwell MCD 2004 185 141.04724
## 948 00CS Sandwell MCD 2005 200 142.49831
## 949 00CS Sandwell MCD 2006 205 143.48563
## 950 00CS Sandwell MCD 2007 190 146.71108
## 951 00CS Sandwell MCD 2008 190 149.83171
## 952 00CS Sandwell MCD 2009 180 153.07479
## 953 00CS Sandwell MCD 2010 180 157.02934
## 954 00CS Sandwell MCD 2011 145 162.60139
## 955 00CS Sandwell MCD 2012 150 163.68942
## 956 00CS Sandwell MCD 2013 130 164.57268
## 957 00CS Sandwell MCD 2014 120 169.16604
## 958 00CS Sandwell MCD 2015 160 170.59034
## 959 00CS Sandwell MCD 2016 135 168.54250
## 960 00CS Sandwell MCD 2017 160 170.73323
## 961 00CT Solihull MCD 2002 125 104.40753
## 962 00CT Solihull MCD 2003 130 103.94361
## 963 00CT Solihull MCD 2004 90 107.13155
## 964 00CT Solihull MCD 2005 145 109.59654
## 965 00CT Solihull MCD 2006 120 114.63392
## 966 00CT Solihull MCD 2007 95 114.89857
## 967 00CT Solihull MCD 2008 115 120.97355
## 968 00CT Solihull MCD 2009 115 126.41067
## 969 00CT Solihull MCD 2010 100 135.02261
## 970 00CT Solihull MCD 2011 90 144.83919
## 971 00CT Solihull MCD 2012 95 149.67169
## 972 00CT Solihull MCD 2013 115 147.93553
## 973 00CT Solihull MCD 2014 95 151.47681
## 974 00CT Solihull MCD 2015 100 159.23187
## 975 00CT Solihull MCD 2016 115 161.64590
## 976 00CT Solihull MCD 2017 110 170.88345
## 977 00CU Walsall MCD 2002 130 118.87893
## 978 00CU Walsall MCD 2003 150 119.79140
## 979 00CU Walsall MCD 2004 135 123.04172
## 980 00CU Walsall MCD 2005 155 126.15690
## 981 00CU Walsall MCD 2006 150 129.46354
## 982 00CU Walsall MCD 2007 185 131.55010
## 983 00CU Walsall MCD 2008 140 134.76848
## 984 00CU Walsall MCD 2009 145 134.07426
## 985 00CU Walsall MCD 2010 105 141.71912
## 986 00CU Walsall MCD 2011 95 148.76854
## 987 00CU Walsall MCD 2012 75 150.81787
## 988 00CU Walsall MCD 2013 75 151.46992
## 989 00CU Walsall MCD 2014 80 165.45451
## 990 00CU Walsall MCD 2015 85 163.89512
## 991 00CU Walsall MCD 2016 95 167.71601
## 992 00CU Walsall MCD 2017 105 172.16212
## 993 00CW Wolverhampton MCD 2002 145 125.20978
## 994 00CW Wolverhampton MCD 2003 175 124.83835
## 995 00CW Wolverhampton MCD 2004 190 127.48537
## 996 00CW Wolverhampton MCD 2005 200 129.56728
## 997 00CW Wolverhampton MCD 2006 165 132.04143
## 998 00CW Wolverhampton MCD 2007 135 133.36314
## 999 00CW Wolverhampton MCD 2008 170 135.61675
## 1000 00CW Wolverhampton MCD 2009 125 138.33606
## 1001 00CW Wolverhampton MCD 2010 125 142.11825
## 1002 00CW Wolverhampton MCD 2011 110 145.53811
## 1003 00CW Wolverhampton MCD 2012 95 144.93029
## 1004 00CW Wolverhampton MCD 2013 110 147.78445
## 1005 00CW Wolverhampton MCD 2014 95 155.92992
## 1006 00CW Wolverhampton MCD 2015 115 157.93901
## 1007 00CW Wolverhampton MCD 2016 85 162.35378
## 1008 00CW Wolverhampton MCD 2017 125 160.16728
## 1009 00CX Bradford MCD 2002 375 218.74084
## 1010 00CX Bradford MCD 2003 305 219.54230
## 1011 00CX Bradford MCD 2004 290 223.17732
## 1012 00CX Bradford MCD 2005 340 226.30059
## 1013 00CX Bradford MCD 2006 290 230.89933
## 1014 00CX Bradford MCD 2007 310 233.64198
## 1015 00CX Bradford MCD 2008 330 228.28605
## 1016 00CX Bradford MCD 2009 240 232.62963
## 1017 00CX Bradford MCD 2010 225 240.91911
## 1018 00CX Bradford MCD 2011 190 246.74816
## 1019 00CX Bradford MCD 2012 220 253.18874
## 1020 00CX Bradford MCD 2013 245 255.55855
## 1021 00CX Bradford MCD 2014 225 261.95474
## 1022 00CX Bradford MCD 2015 220 267.83766
## 1023 00CX Bradford MCD 2016 205 269.07084
## 1024 00CX Bradford MCD 2017 220 270.80187
## 1025 00CY Calderdale MCD 2002 135 99.89912
## 1026 00CY Calderdale MCD 2003 160 99.10451
## 1027 00CY Calderdale MCD 2004 150 99.55951
## 1028 00CY Calderdale MCD 2005 160 102.35732
## 1029 00CY Calderdale MCD 2006 115 103.07045
## 1030 00CY Calderdale MCD 2007 115 103.04409
## 1031 00CY Calderdale MCD 2008 125 104.05403
## 1032 00CY Calderdale MCD 2009 130 107.83188
## 1033 00CY Calderdale MCD 2010 130 109.60950
## 1034 00CY Calderdale MCD 2011 125 111.99013
## 1035 00CY Calderdale MCD 2012 120 114.13598
## 1036 00CY Calderdale MCD 2013 120 117.73994
## 1037 00CY Calderdale MCD 2014 85 122.39927
## 1038 00CY Calderdale MCD 2015 100 120.20927
## 1039 00CY Calderdale MCD 2016 80 120.42102
## 1040 00CY Calderdale MCD 2017 75 128.80512
## 1041 00CZ Kirklees MCD 2002 250 184.49179
## 1042 00CZ Kirklees MCD 2003 335 187.69746
## 1043 00CZ Kirklees MCD 2004 290 186.50172
## 1044 00CZ Kirklees MCD 2005 310 193.01310
## 1045 00CZ Kirklees MCD 2006 295 192.78721
## 1046 00CZ Kirklees MCD 2007 265 197.20206
## 1047 00CZ Kirklees MCD 2008 290 195.47203
## 1048 00CZ Kirklees MCD 2009 225 199.52852
## 1049 00CZ Kirklees MCD 2010 215 206.14459
## 1050 00CZ Kirklees MCD 2011 210 212.74773
## 1051 00CZ Kirklees MCD 2012 205 218.10426
## 1052 00CZ Kirklees MCD 2013 170 224.75278
## 1053 00CZ Kirklees MCD 2014 180 229.96804
## 1054 00CZ Kirklees MCD 2015 200 234.89770
## 1055 00CZ Kirklees MCD 2016 190 238.05627
## 1056 00CZ Kirklees MCD 2017 185 244.14628
## 1057 00DA Leeds MCD 2002 485 360.30473
## 1058 00DA Leeds MCD 2003 430 359.48330
## 1059 00DA Leeds MCD 2004 420 359.31131
## 1060 00DA Leeds MCD 2005 420 368.21261
## 1061 00DA Leeds MCD 2006 360 373.09856
## 1062 00DA Leeds MCD 2007 400 375.00660
## 1063 00DA Leeds MCD 2008 430 368.45115
## 1064 00DA Leeds MCD 2009 365 371.14416
## 1065 00DA Leeds MCD 2010 385 382.48892
## 1066 00DA Leeds MCD 2011 325 380.81513
## 1067 00DA Leeds MCD 2012 305 389.95247
## 1068 00DA Leeds MCD 2013 315 392.49657
## 1069 00DA Leeds MCD 2014 270 400.99397
## 1070 00DA Leeds MCD 2015 335 400.36576
## 1071 00DA Leeds MCD 2016 290 410.84301
## 1072 00DA Leeds MCD 2017 290 416.95486
## 1073 00DB Wakefield MCD 2002 265 144.75576
## 1074 00DB Wakefield MCD 2003 260 151.07551
## 1075 00DB Wakefield MCD 2004 285 151.60906
## 1076 00DB Wakefield MCD 2005 285 155.63220
## 1077 00DB Wakefield MCD 2006 230 161.12068
## 1078 00DB Wakefield MCD 2007 230 162.00338
## 1079 00DB Wakefield MCD 2008 210 164.56631
## 1080 00DB Wakefield MCD 2009 170 169.32334
## 1081 00DB Wakefield MCD 2010 175 176.70217
## 1082 00DB Wakefield MCD 2011 150 179.72807
## 1083 00DB Wakefield MCD 2012 165 183.92535
## 1084 00DB Wakefield MCD 2013 165 186.82310
## 1085 00DB Wakefield MCD 2014 140 190.16764
## 1086 00DB Wakefield MCD 2015 195 195.81036
## 1087 00DB Wakefield MCD 2016 140 203.60726
## 1088 00DB Wakefield MCD 2017 165 207.56817
## 1089 00EB Hartlepool UA 2002 75 40.14552
## 1090 00EB Hartlepool UA 2003 65 39.88571
## 1091 00EB Hartlepool UA 2004 75 40.23311
## 1092 00EB Hartlepool UA 2005 85 42.00542
## 1093 00EB Hartlepool UA 2006 60 41.43293
## 1094 00EB Hartlepool UA 2007 70 44.39626
## 1095 00EB Hartlepool UA 2008 55 42.14851
## 1096 00EB Hartlepool UA 2009 50 42.48210
## 1097 00EB Hartlepool UA 2010 45 46.73756
## 1098 00EB Hartlepool UA 2011 60 50.18142
## 1099 00EB Hartlepool UA 2012 55 53.42921
## 1100 00EB Hartlepool UA 2013 50 52.77546
## 1101 00EB Hartlepool UA 2014 50 58.39165
## 1102 00EB Hartlepool UA 2015 55 56.85820
## 1103 00EB Hartlepool UA 2016 35 59.46774
## 1104 00EB Hartlepool UA 2017 55 57.06447
## 1105 00EC Middlesbrough UA 2002 120 58.28641
## 1106 00EC Middlesbrough UA 2003 115 58.99010
## 1107 00EC Middlesbrough UA 2004 110 59.65249
## 1108 00EC Middlesbrough UA 2005 90 62.77735
## 1109 00EC Middlesbrough UA 2006 95 64.56184
## 1110 00EC Middlesbrough UA 2007 90 63.21787
## 1111 00EC Middlesbrough UA 2008 90 66.19396
## 1112 00EC Middlesbrough UA 2009 105 66.72727
## 1113 00EC Middlesbrough UA 2010 95 66.64646
## 1114 00EC Middlesbrough UA 2011 60 67.72773
## 1115 00EC Middlesbrough UA 2012 75 72.23710
## 1116 00EC Middlesbrough UA 2013 80 69.19638
## 1117 00EC Middlesbrough UA 2014 85 71.22211
## 1118 00EC Middlesbrough UA 2015 60 69.15370
## 1119 00EC Middlesbrough UA 2016 75 74.59015
## 1120 00EC Middlesbrough UA 2017 60 73.90699
## 1121 00EE Redcar and Cleveland UA 2002 140 68.87210
## 1122 00EE Redcar and Cleveland UA 2003 120 68.49740
## 1123 00EE Redcar and Cleveland UA 2004 115 72.49054
## 1124 00EE Redcar and Cleveland UA 2005 105 72.35787
## 1125 00EE Redcar and Cleveland UA 2006 95 72.53226
## 1126 00EE Redcar and Cleveland UA 2007 85 72.92254
## 1127 00EE Redcar and Cleveland UA 2008 110 75.21907
## 1128 00EE Redcar and Cleveland UA 2009 80 77.19084
## 1129 00EE Redcar and Cleveland UA 2010 75 79.61292
## 1130 00EE Redcar and Cleveland UA 2011 75 85.70902
## 1131 00EE Redcar and Cleveland UA 2012 65 87.62961
## 1132 00EE Redcar and Cleveland UA 2013 85 87.90419
## 1133 00EE Redcar and Cleveland UA 2014 50 93.53889
## 1134 00EE Redcar and Cleveland UA 2015 65 95.03493
## 1135 00EE Redcar and Cleveland UA 2016 70 95.13915
## 1136 00EE Redcar and Cleveland UA 2017 75 98.62529
## 1137 00EF Stockton-on-Tees UA 2002 130 74.90418
## 1138 00EF Stockton-on-Tees UA 2003 120 75.44209
## 1139 00EF Stockton-on-Tees UA 2004 110 78.89149
## 1140 00EF Stockton-on-Tees UA 2005 140 80.00487
## 1141 00EF Stockton-on-Tees UA 2006 100 84.84076
## 1142 00EF Stockton-on-Tees UA 2007 115 84.71010
## 1143 00EF Stockton-on-Tees UA 2008 120 85.04069
## 1144 00EF Stockton-on-Tees UA 2009 90 86.31671
## 1145 00EF Stockton-on-Tees UA 2010 75 89.74127
## 1146 00EF Stockton-on-Tees UA 2011 75 94.59542
## 1147 00EF Stockton-on-Tees UA 2012 75 101.72762
## 1148 00EF Stockton-on-Tees UA 2013 100 100.97994
## 1149 00EF Stockton-on-Tees UA 2014 85 106.12881
## 1150 00EF Stockton-on-Tees UA 2015 100 110.32037
## 1151 00EF Stockton-on-Tees UA 2016 95 114.73024
## 1152 00EF Stockton-on-Tees UA 2017 95 115.25666
## 1153 00EH Darlington UA 2002 65 53.96385
## 1154 00EH Darlington UA 2003 75 52.76884
## 1155 00EH Darlington UA 2004 60 53.32909
## 1156 00EH Darlington UA 2005 75 55.88906
## 1157 00EH Darlington UA 2006 65 56.18045
## 1158 00EH Darlington UA 2007 55 58.09677
## 1159 00EH Darlington UA 2008 60 60.93042
## 1160 00EH Darlington UA 2009 60 62.01341
## 1161 00EH Darlington UA 2010 75 63.87031
## 1162 00EH Darlington UA 2011 50 63.25147
## 1163 00EH Darlington UA 2012 45 69.83719
## 1164 00EH Darlington UA 2013 45 67.15258
## 1165 00EH Darlington UA 2014 50 70.88516
## 1166 00EH Darlington UA 2015 60 72.86307
## 1167 00EH Darlington UA 2016 55 70.08910
## 1168 00EH Darlington UA 2017 65 74.03965
## 1169 00EJ County Durham UA 2002 360 244.44202
## 1170 00EJ County Durham UA 2003 330 246.04272
## 1171 00EJ County Durham UA 2004 335 250.18326
## 1172 00EJ County Durham UA 2005 380 254.81213
## 1173 00EJ County Durham UA 2006 265 257.05746
## 1174 00EJ County Durham UA 2007 300 262.07449
## 1175 00EJ County Durham UA 2008 300 268.15914
## 1176 00EJ County Durham UA 2009 340 275.73836
## 1177 00EJ County Durham UA 2010 310 284.50157
## 1178 00EJ County Durham UA 2011 275 292.26824
## 1179 00EJ County Durham UA 2012 230 301.48903
## 1180 00EJ County Durham UA 2013 265 304.77711
## 1181 00EJ County Durham UA 2014 220 316.47293
## 1182 00EJ County Durham UA 2015 280 321.57999
## 1183 00EJ County Durham UA 2016 230 328.59815
## 1184 00EJ County Durham UA 2017 225 330.62276
## 1185 00EM Northumberland UA 2002 215 169.32726
## 1186 00EM Northumberland UA 2003 260 170.70223
## 1187 00EM Northumberland UA 2004 270 177.33417
## 1188 00EM Northumberland UA 2005 195 178.76165
## 1189 00EM Northumberland UA 2006 195 186.07717
## 1190 00EM Northumberland UA 2007 185 190.77185
## 1191 00EM Northumberland UA 2008 205 192.25519
## 1192 00EM Northumberland UA 2009 200 198.44232
## 1193 00EM Northumberland UA 2010 205 202.65726
## 1194 00EM Northumberland UA 2011 230 213.54308
## 1195 00EM Northumberland UA 2012 190 221.53751
## 1196 00EM Northumberland UA 2013 180 222.99500
## 1197 00EM Northumberland UA 2014 165 233.44871
## 1198 00EM Northumberland UA 2015 175 232.63607
## 1199 00EM Northumberland UA 2016 155 242.75475
## 1200 00EM Northumberland UA 2017 165 248.79594
## 1201 00EQ Cheshire East UA 2002 240 194.38012
## 1202 00EQ Cheshire East UA 2003 245 201.57513
## 1203 00EQ Cheshire East UA 2004 275 205.64830
## 1204 00EQ Cheshire East UA 2005 220 209.73328
## 1205 00EQ Cheshire East UA 2006 260 215.75315
## 1206 00EQ Cheshire East UA 2007 265 222.31123
## 1207 00EQ Cheshire East UA 2008 230 225.49456
## 1208 00EQ Cheshire East UA 2009 155 230.24904
## 1209 00EQ Cheshire East UA 2010 200 242.85585
## 1210 00EQ Cheshire East UA 2011 215 250.08377
## 1211 00EQ Cheshire East UA 2012 210 260.82950
## 1212 00EQ Cheshire East UA 2013 230 270.31359
## 1213 00EQ Cheshire East UA 2014 185 281.89512
## 1214 00EQ Cheshire East UA 2015 220 284.75841
## 1215 00EQ Cheshire East UA 2016 255 292.24478
## 1216 00EQ Cheshire East UA 2017 255 297.92156
## 1217 00ET Halton UA 2002 75 44.60026
## 1218 00ET Halton UA 2003 100 44.30883
## 1219 00ET Halton UA 2004 70 45.95829
## 1220 00ET Halton UA 2005 70 47.05616
## 1221 00ET Halton UA 2006 60 48.53893
## 1222 00ET Halton UA 2007 75 48.69353
## 1223 00ET Halton UA 2008 105 50.71061
## 1224 00ET Halton UA 2009 60 53.75526
## 1225 00ET Halton UA 2010 55 51.99122
## 1226 00ET Halton UA 2011 60 56.96747
## 1227 00ET Halton UA 2012 60 59.53691
## 1228 00ET Halton UA 2013 70 59.19501
## 1229 00ET Halton UA 2014 60 60.14161
## 1230 00ET Halton UA 2015 65 60.55373
## 1231 00ET Halton UA 2016 80 66.57085
## 1232 00ET Halton UA 2017 65 65.46714
## 1233 00EU Warrington UA 2002 150 82.13893
## 1234 00EU Warrington UA 2003 165 84.28012
## 1235 00EU Warrington UA 2004 115 84.83942
## 1236 00EU Warrington UA 2005 135 89.43413
## 1237 00EU Warrington UA 2006 145 91.47106
## 1238 00EU Warrington UA 2007 120 94.16426
## 1239 00EU Warrington UA 2008 135 93.90894
## 1240 00EU Warrington UA 2009 125 96.42481
## 1241 00EU Warrington UA 2010 100 98.09601
## 1242 00EU Warrington UA 2011 105 99.94360
## 1243 00EU Warrington UA 2012 130 106.20378
## 1244 00EU Warrington UA 2013 110 105.25329
## 1245 00EU Warrington UA 2014 110 110.47296
## 1246 00EU Warrington UA 2015 145 114.37100
## 1247 00EU Warrington UA 2016 110 116.28995
## 1248 00EU Warrington UA 2017 95 121.40522
## 1249 00EW Cheshire West and Chester UA 2002 200 165.96396
## 1250 00EW Cheshire West and Chester UA 2003 210 169.65120
## 1251 00EW Cheshire West and Chester UA 2004 180 170.45202
## 1252 00EW Cheshire West and Chester UA 2005 190 176.07852
## 1253 00EW Cheshire West and Chester UA 2006 205 181.41382
## 1254 00EW Cheshire West and Chester UA 2007 180 184.86767
## 1255 00EW Cheshire West and Chester UA 2008 210 189.18355
## 1256 00EW Cheshire West and Chester UA 2009 225 192.00763
## 1257 00EW Cheshire West and Chester UA 2010 205 199.75451
## 1258 00EW Cheshire West and Chester UA 2011 180 211.56751
## 1259 00EW Cheshire West and Chester UA 2012 155 211.87763
## 1260 00EW Cheshire West and Chester UA 2013 170 217.29108
## 1261 00EW Cheshire West and Chester UA 2014 180 224.14425
## 1262 00EW Cheshire West and Chester UA 2015 175 231.69102
## 1263 00EW Cheshire West and Chester UA 2016 195 233.74642
## 1264 00EW Cheshire West and Chester UA 2017 170 244.02125
## 1265 00EX Blackburn with Darwen UA 2002 105 58.93658
## 1266 00EX Blackburn with Darwen UA 2003 95 58.75760
## 1267 00EX Blackburn with Darwen UA 2004 80 57.19123
## 1268 00EX Blackburn with Darwen UA 2005 115 58.54012
## 1269 00EX Blackburn with Darwen UA 2006 80 60.13623
## 1270 00EX Blackburn with Darwen UA 2007 85 60.08220
## 1271 00EX Blackburn with Darwen UA 2008 80 59.86649
## 1272 00EX Blackburn with Darwen UA 2009 80 60.23639
## 1273 00EX Blackburn with Darwen UA 2010 55 64.68360
## 1274 00EX Blackburn with Darwen UA 2011 70 66.61549
## 1275 00EX Blackburn with Darwen UA 2012 70 65.12080
## 1276 00EX Blackburn with Darwen UA 2013 70 66.96108
## 1277 00EX Blackburn with Darwen UA 2014 70 62.95596
## 1278 00EX Blackburn with Darwen UA 2015 60 63.76762
## 1279 00EX Blackburn with Darwen UA 2016 90 67.04905
## 1280 00EX Blackburn with Darwen UA 2017 75 67.42253
## 1281 00EY Blackpool UA 2002 175 92.84657
## 1282 00EY Blackpool UA 2003 160 90.53700
## 1283 00EY Blackpool UA 2004 125 93.02478
## 1284 00EY Blackpool UA 2005 155 91.51757
## 1285 00EY Blackpool UA 2006 170 92.36177
## 1286 00EY Blackpool UA 2007 135 92.02693
## 1287 00EY Blackpool UA 2008 165 91.26577
## 1288 00EY Blackpool UA 2009 165 90.86052
## 1289 00EY Blackpool UA 2010 150 94.12526
## 1290 00EY Blackpool UA 2011 135 95.90842
## 1291 00EY Blackpool UA 2012 115 96.72366
## 1292 00EY Blackpool UA 2013 110 95.87882
## 1293 00EY Blackpool UA 2014 100 99.01785
## 1294 00EY Blackpool UA 2015 90 96.12527
## 1295 00EY Blackpool UA 2016 100 99.22819
## 1296 00EY Blackpool UA 2017 100 98.10288
## 1297 00FA Kingston upon Hull 2002 185 112.88324
## 1298 00FA Kingston upon Hull 2003 175 111.24238
## 1299 00FA Kingston upon Hull 2004 145 115.75877
## 1300 00FA Kingston upon Hull 2005 175 115.76348
## 1301 00FA Kingston upon Hull 2006 150 116.08678
## 1302 00FA Kingston upon Hull 2007 150 114.26317
## 1303 00FA Kingston upon Hull 2008 170 115.93651
## 1304 00FA Kingston upon Hull 2009 150 117.20655
## 1305 00FA Kingston upon Hull 2010 150 121.95275
## 1306 00FA Kingston upon Hull 2011 135 122.19141
## 1307 00FA Kingston upon Hull 2012 115 123.63710
## 1308 00FA Kingston upon Hull 2013 115 126.86843
## 1309 00FA Kingston upon Hull 2014 110 125.18594
## 1310 00FA Kingston upon Hull 2015 115 123.54232
## 1311 00FA Kingston upon Hull 2016 130 123.42115
## 1312 00FA Kingston upon Hull 2017 115 125.58323
## 1313 00FB East Riding of Yorkshire UA 2002 195 190.20877
## 1314 00FB East Riding of Yorkshire UA 2003 255 192.62447
## 1315 00FB East Riding of Yorkshire UA 2004 245 194.82660
## 1316 00FB East Riding of Yorkshire UA 2005 240 198.83885
## 1317 00FB East Riding of Yorkshire UA 2006 195 207.05632
## 1318 00FB East Riding of Yorkshire UA 2007 225 212.31899
## 1319 00FB East Riding of Yorkshire UA 2008 240 214.22670
## 1320 00FB East Riding of Yorkshire UA 2009 220 219.59254
## 1321 00FB East Riding of Yorkshire UA 2010 215 229.75517
## 1322 00FB East Riding of Yorkshire UA 2011 200 238.11055
## 1323 00FB East Riding of Yorkshire UA 2012 180 247.23311
## 1324 00FB East Riding of Yorkshire UA 2013 185 247.26651
## 1325 00FB East Riding of Yorkshire UA 2014 195 259.56776
## 1326 00FB East Riding of Yorkshire UA 2015 205 264.51241
## 1327 00FB East Riding of Yorkshire UA 2016 165 265.90495
## 1328 00FB East Riding of Yorkshire UA 2017 195 277.01260
## 1329 00FC North East Lincolnshire UA 2002 110 82.59871
## 1330 00FC North East Lincolnshire UA 2003 125 83.19875
## 1331 00FC North East Lincolnshire UA 2004 100 84.13783
## 1332 00FC North East Lincolnshire UA 2005 75 87.99814
## 1333 00FC North East Lincolnshire UA 2006 95 87.74334
## 1334 00FC North East Lincolnshire UA 2007 95 87.63360
## 1335 00FC North East Lincolnshire UA 2008 120 87.31462
## 1336 00FC North East Lincolnshire UA 2009 100 88.67373
## 1337 00FC North East Lincolnshire UA 2010 95 95.23783
## 1338 00FC North East Lincolnshire UA 2011 85 97.59051
## 1339 00FC North East Lincolnshire UA 2012 100 102.18752
## 1340 00FC North East Lincolnshire UA 2013 70 104.51521
## 1341 00FC North East Lincolnshire UA 2014 65 101.66404
## 1342 00FC North East Lincolnshire UA 2015 70 104.77195
## 1343 00FC North East Lincolnshire UA 2016 90 106.40848
## 1344 00FC North East Lincolnshire UA 2017 65 107.63438
## 1345 00FD North Lincolnshire UA 2002 70 76.73496
## 1346 00FD North Lincolnshire UA 2003 115 79.69980
## 1347 00FD North Lincolnshire UA 2004 85 79.42853
## 1348 00FD North Lincolnshire UA 2005 70 84.41440
## 1349 00FD North Lincolnshire UA 2006 90 85.31825
## 1350 00FD North Lincolnshire UA 2007 85 91.39096
## 1351 00FD North Lincolnshire UA 2008 110 91.76924
## 1352 00FD North Lincolnshire UA 2009 115 92.77053
## 1353 00FD North Lincolnshire UA 2010 85 94.76450
## 1354 00FD North Lincolnshire UA 2011 95 101.43464
## 1355 00FD North Lincolnshire UA 2012 60 103.42433
## 1356 00FD North Lincolnshire UA 2013 85 104.78446
## 1357 00FD North Lincolnshire UA 2014 75 107.68952
## 1358 00FD North Lincolnshire UA 2015 90 112.47188
## 1359 00FD North Lincolnshire UA 2016 55 110.26750
## 1360 00FD North Lincolnshire UA 2017 70 114.57367
## 1361 00FF York UA 2002 130 98.20600
## 1362 00FF York UA 2003 110 100.49805
## 1363 00FF York UA 2004 125 103.45792
## 1364 00FF York UA 2005 115 106.86358
## 1365 00FF York UA 2006 130 106.66391
## 1366 00FF York UA 2007 95 113.03529
## 1367 00FF York UA 2008 130 111.08656
## 1368 00FF York UA 2009 125 116.03296
## 1369 00FF York UA 2010 125 117.98677
## 1370 00FF York UA 2011 100 121.23883
## 1371 00FF York UA 2012 90 126.69610
## 1372 00FF York UA 2013 115 127.62192
## 1373 00FF York UA 2014 80 130.09048
## 1374 00FF York UA 2015 105 134.50362
## 1375 00FF York UA 2016 105 138.29602
## 1376 00FF York UA 2017 105 137.54624
## 1377 00FK Derby UA 2002 165 116.55961
## 1378 00FK Derby UA 2003 190 116.57878
## 1379 00FK Derby UA 2004 160 116.95386
## 1380 00FK Derby UA 2005 185 121.96403
## 1381 00FK Derby UA 2006 155 121.34347
## 1382 00FK Derby UA 2007 145 127.20856
## 1383 00FK Derby UA 2008 160 125.84125
## 1384 00FK Derby UA 2009 150 126.78525
## 1385 00FK Derby UA 2010 125 129.82655
## 1386 00FK Derby UA 2011 100 137.20381
## 1387 00FK Derby UA 2012 125 141.17904
## 1388 00FK Derby UA 2013 130 141.57752
## 1389 00FK Derby UA 2014 105 145.10104
## 1390 00FK Derby UA 2015 125 150.32606
## 1391 00FK Derby UA 2016 115 152.51345
## 1392 00FK Derby UA 2017 115 154.78387
## 1393 00FN Leicester UA 2002 235 127.16875
## 1394 00FN Leicester UA 2003 245 127.43780
## 1395 00FN Leicester UA 2004 215 128.25136
## 1396 00FN Leicester UA 2005 215 127.47004
## 1397 00FN Leicester UA 2006 200 126.54864
## 1398 00FN Leicester UA 2007 175 129.82105
## 1399 00FN Leicester UA 2008 185 129.39656
## 1400 00FN Leicester UA 2009 130 128.27909
## 1401 00FN Leicester UA 2010 115 132.70830
## 1402 00FN Leicester UA 2011 90 135.80916
## 1403 00FN Leicester UA 2012 105 140.99939
## 1404 00FN Leicester UA 2013 135 146.78327
## 1405 00FN Leicester UA 2014 110 147.34655
## 1406 00FN Leicester UA 2015 150 149.00053
## 1407 00FN Leicester UA 2016 120 147.34773
## 1408 00FN Leicester UA 2017 145 150.87834
## 1409 00FP Rutland UA 2002 25 20.30308
## 1410 00FP Rutland UA 2003 20 18.55790
## 1411 00FP Rutland UA 2004 25 20.17215
## 1412 00FP Rutland UA 2005 20 23.13686
## 1413 00FP Rutland UA 2006 15 24.59171
## 1414 00FP Rutland UA 2007 15 25.54191
## 1415 00FP Rutland UA 2008 15 22.06002
## 1416 00FP Rutland UA 2009 25 24.22388
## 1417 00FP Rutland UA 2010 20 24.06869
## 1418 00FP Rutland UA 2011 10 29.16545
## 1419 00FP Rutland UA 2012 15 25.04587
## 1420 00FP Rutland UA 2013 10 25.36470
## 1421 00FP Rutland UA 2014 15 27.75415
## 1422 00FP Rutland UA 2015 25 32.10979
## 1423 00FP Rutland UA 2016 20 35.10081
## 1424 00FP Rutland UA 2017 15 29.88059
## 1425 00FY Nottingham UA 2002 180 122.02590
## 1426 00FY Nottingham UA 2003 180 119.81757
## 1427 00FY Nottingham UA 2004 165 122.50646
## 1428 00FY Nottingham UA 2005 165 121.00630
## 1429 00FY Nottingham UA 2006 140 122.32431
## 1430 00FY Nottingham UA 2007 135 123.78236
## 1431 00FY Nottingham UA 2008 130 122.59064
## 1432 00FY Nottingham UA 2009 140 123.37040
## 1433 00FY Nottingham UA 2010 120 128.97305
## 1434 00FY Nottingham UA 2011 125 130.60088
## 1435 00FY Nottingham UA 2012 110 133.08639
## 1436 00FY Nottingham UA 2013 100 136.28315
## 1437 00FY Nottingham UA 2014 110 140.49760
## 1438 00FY Nottingham UA 2015 130 135.16987
## 1439 00FY Nottingham UA 2016 100 138.30057
## 1440 00FY Nottingham UA 2017 95 138.89720
## 1441 00GF Telford and Wrekin UA 2002 90 61.50686
## 1442 00GF Telford and Wrekin UA 2003 80 61.58983
## 1443 00GF Telford and Wrekin UA 2004 85 63.25349
## 1444 00GF Telford and Wrekin UA 2005 85 66.39853
## 1445 00GF Telford and Wrekin UA 2006 75 65.91720
## 1446 00GF Telford and Wrekin UA 2007 85 68.93459
## 1447 00GF Telford and Wrekin UA 2008 90 69.66746
## 1448 00GF Telford and Wrekin UA 2009 80 72.76218
## 1449 00GF Telford and Wrekin UA 2010 95 75.44227
## 1450 00GF Telford and Wrekin UA 2011 70 74.96979
## 1451 00GF Telford and Wrekin UA 2012 70 78.11592
## 1452 00GF Telford and Wrekin UA 2013 60 76.41220
## 1453 00GF Telford and Wrekin UA 2014 55 82.01424
## 1454 00GF Telford and Wrekin UA 2015 90 83.61019
## 1455 00GF Telford and Wrekin UA 2016 65 87.60433
## 1456 00GF Telford and Wrekin UA 2017 65 91.89970
## 1457 00GG Shropshire UA 2002 190 170.45384
## 1458 00GG Shropshire UA 2003 215 172.19164
## 1459 00GG Shropshire UA 2004 185 173.56828
## 1460 00GG Shropshire UA 2005 195 179.04274
## 1461 00GG Shropshire UA 2006 190 186.21298
## 1462 00GG Shropshire UA 2007 200 193.60360
## 1463 00GG Shropshire UA 2008 215 198.49854
## 1464 00GG Shropshire UA 2009 200 205.87625
## 1465 00GG Shropshire UA 2010 220 208.72515
## 1466 00GG Shropshire UA 2011 150 219.65512
## 1467 00GG Shropshire UA 2012 160 224.29123
## 1468 00GG Shropshire UA 2013 180 234.36954
## 1469 00GG Shropshire UA 2014 145 242.63039
## 1470 00GG Shropshire UA 2015 180 245.62019
## 1471 00GG Shropshire UA 2016 175 249.56237
## 1472 00GG Shropshire UA 2017 185 260.98142
## 1473 00GL Stoke-on-Trent UA 2002 200 117.13961
## 1474 00GL Stoke-on-Trent UA 2003 200 115.62227
## 1475 00GL Stoke-on-Trent UA 2004 135 118.71052
## 1476 00GL Stoke-on-Trent UA 2005 180 120.71781
## 1477 00GL Stoke-on-Trent UA 2006 155 119.39589
## 1478 00GL Stoke-on-Trent UA 2007 200 121.81847
## 1479 00GL Stoke-on-Trent UA 2008 215 116.81047
## 1480 00GL Stoke-on-Trent UA 2009 210 117.50137
## 1481 00GL Stoke-on-Trent UA 2010 165 121.53419
## 1482 00GL Stoke-on-Trent UA 2011 140 123.84544
## 1483 00GL Stoke-on-Trent UA 2012 155 129.48077
## 1484 00GL Stoke-on-Trent UA 2013 145 129.91685
## 1485 00GL Stoke-on-Trent UA 2014 125 130.91320
## 1486 00GL Stoke-on-Trent UA 2015 155 132.20752
## 1487 00GL Stoke-on-Trent UA 2016 160 134.74187
## 1488 00GL Stoke-on-Trent UA 2017 95 135.58709
## 1489 00HA Bath and North East Somerset UA 2002 115 104.96350
## 1490 00HA Bath and North East Somerset UA 2003 150 106.09163
## 1491 00HA Bath and North East Somerset UA 2004 135 107.01338
## 1492 00HA Bath and North East Somerset UA 2005 115 109.29131
## 1493 00HA Bath and North East Somerset UA 2006 120 112.23918
## 1494 00HA Bath and North East Somerset UA 2007 135 111.74776
## 1495 00HA Bath and North East Somerset UA 2008 100 112.04923
## 1496 00HA Bath and North East Somerset UA 2009 110 113.74997
## 1497 00HA Bath and North East Somerset UA 2010 85 118.27919
## 1498 00HA Bath and North East Somerset UA 2011 95 122.96386
## 1499 00HA Bath and North East Somerset UA 2012 85 121.57478
## 1500 00HA Bath and North East Somerset UA 2013 95 124.26075
## 1501 00HA Bath and North East Somerset UA 2014 95 129.29297
## 1502 00HA Bath and North East Somerset UA 2015 110 128.36536
## 1503 00HA Bath and North East Somerset UA 2016 80 131.29403
## 1504 00HA Bath and North East Somerset UA 2017 85 129.30848
## 1505 00HB Bristol 2002 275 195.04272
## 1506 00HB Bristol 2003 370 194.55851
## 1507 00HB Bristol 2004 265 194.72049
## 1508 00HB Bristol 2005 290 199.59037
## 1509 00HB Bristol 2006 235 201.04323
## 1510 00HB Bristol 2007 245 205.87811
## 1511 00HB Bristol 2008 220 201.15347
## 1512 00HB Bristol 2009 235 206.25598
## 1513 00HB Bristol 2010 235 212.08715
## 1514 00HB Bristol 2011 235 218.96870
## 1515 00HB Bristol 2012 180 227.13123
## 1516 00HB Bristol 2013 210 225.13306
## 1517 00HB Bristol 2014 160 229.29128
## 1518 00HB Bristol 2015 235 228.79597
## 1519 00HB Bristol 2016 170 228.96487
## 1520 00HB Bristol 2017 175 230.64511
## 1521 00HC North Somerset UA 2002 150 133.63633
## 1522 00HC North Somerset UA 2003 175 135.18822
## 1523 00HC North Somerset UA 2004 165 139.25381
## 1524 00HC North Somerset UA 2005 190 141.83452
## 1525 00HC North Somerset UA 2006 145 144.06448
## 1526 00HC North Somerset UA 2007 160 145.73245
## 1527 00HC North Somerset UA 2008 145 147.56932
## 1528 00HC North Somerset UA 2009 165 149.13315
## 1529 00HC North Somerset UA 2010 165 155.81600
## 1530 00HC North Somerset UA 2011 155 159.26164
## 1531 00HC North Somerset UA 2012 150 164.96112
## 1532 00HC North Somerset UA 2013 160 171.51683
## 1533 00HC North Somerset UA 2014 110 176.09546
## 1534 00HC North Somerset UA 2015 195 178.56308
## 1535 00HC North Somerset UA 2016 140 181.26012
## 1536 00HC North Somerset UA 2017 140 182.64378
## 1537 00HD South Gloucestershire UA 2002 115 108.98090
## 1538 00HD South Gloucestershire UA 2003 145 113.54658
## 1539 00HD South Gloucestershire UA 2004 140 116.56128
## 1540 00HD South Gloucestershire UA 2005 135 118.59146
## 1541 00HD South Gloucestershire UA 2006 125 126.02515
## 1542 00HD South Gloucestershire UA 2007 135 126.28593
## 1543 00HD South Gloucestershire UA 2008 175 127.82495
## 1544 00HD South Gloucestershire UA 2009 155 134.72489
## 1545 00HD South Gloucestershire UA 2010 140 144.01817
## 1546 00HD South Gloucestershire UA 2011 130 147.06325
## 1547 00HD South Gloucestershire UA 2012 125 153.93230
## 1548 00HD South Gloucestershire UA 2013 125 160.79948
## 1549 00HD South Gloucestershire UA 2014 95 166.95883
## 1550 00HD South Gloucestershire UA 2015 135 170.56343
## 1551 00HD South Gloucestershire UA 2016 135 178.63181
## 1552 00HD South Gloucestershire UA 2017 130 179.68434
## 1553 00HE Cornwall UA & Isles of Scilly UA 2002 370 350.61051
## 1554 00HE Cornwall UA & Isles of Scilly UA 2003 475 353.55048
## 1555 00HE Cornwall UA & Isles of Scilly UA 2004 405 360.38280
## 1556 00HE Cornwall UA & Isles of Scilly UA 2005 420 367.79845
## 1557 00HE Cornwall UA & Isles of Scilly UA 2006 385 373.64188
## 1558 00HE Cornwall UA & Isles of Scilly UA 2007 380 379.53950
## 1559 00HE Cornwall UA & Isles of Scilly UA 2008 390 383.43333
## 1560 00HE Cornwall UA & Isles of Scilly UA 2009 400 389.62943
## 1561 00HE Cornwall UA & Isles of Scilly UA 2010 335 396.44392
## 1562 00HE Cornwall UA & Isles of Scilly UA 2011 335 403.35844
## 1563 00HE Cornwall UA & Isles of Scilly UA 2012 340 416.64558
## 1564 00HE Cornwall UA & Isles of Scilly UA 2013 385 422.14136
## 1565 00HE Cornwall UA & Isles of Scilly UA 2014 290 436.47933
## 1566 00HE Cornwall UA & Isles of Scilly UA 2015 430 436.82628
## 1567 00HE Cornwall UA & Isles of Scilly UA 2016 390 445.43266
## 1568 00HE Cornwall UA & Isles of Scilly UA 2017 380 453.45016
## 1569 00HG Plymouth UA 2002 185 128.56878
## 1570 00HG Plymouth UA 2003 190 128.86746
## 1571 00HG Plymouth UA 2004 180 128.94997
## 1572 00HG Plymouth UA 2005 190 131.22366
## 1573 00HG Plymouth UA 2006 135 133.89169
## 1574 00HG Plymouth UA 2007 160 137.14003
## 1575 00HG Plymouth UA 2008 185 137.75714
## 1576 00HG Plymouth UA 2009 200 141.60558
## 1577 00HG Plymouth UA 2010 165 141.92913
## 1578 00HG Plymouth UA 2011 145 147.45153
## 1579 00HG Plymouth UA 2012 145 152.17775
## 1580 00HG Plymouth UA 2013 130 150.77543
## 1581 00HG Plymouth UA 2014 125 159.14869
## 1582 00HG Plymouth UA 2015 145 162.43242
## 1583 00HG Plymouth UA 2016 125 163.07481
## 1584 00HG Plymouth UA 2017 135 165.46174
## 1585 00HH Torbay UA 2002 105 118.13340
## 1586 00HH Torbay UA 2003 100 118.17182
## 1587 00HH Torbay UA 2004 130 117.77229
## 1588 00HH Torbay UA 2005 155 119.87690
## 1589 00HH Torbay UA 2006 120 121.75497
## 1590 00HH Torbay UA 2007 130 121.45464
## 1591 00HH Torbay UA 2008 110 118.68953
## 1592 00HH Torbay UA 2009 115 118.17052
## 1593 00HH Torbay UA 2010 120 119.63289
## 1594 00HH Torbay UA 2011 110 120.05760
## 1595 00HH Torbay UA 2012 95 123.78705
## 1596 00HH Torbay UA 2013 115 124.68933
## 1597 00HH Torbay UA 2014 105 127.32280
## 1598 00HH Torbay UA 2015 145 127.22449
## 1599 00HH Torbay UA 2016 115 125.79889
## 1600 00HH Torbay UA 2017 120 126.55626
## 1601 00HN Bournemouth UA 2002 200 136.80868
## 1602 00HN Bournemouth UA 2003 215 137.60547
## 1603 00HN Bournemouth UA 2004 175 135.65933
## 1604 00HN Bournemouth UA 2005 155 135.02639
## 1605 00HN Bournemouth UA 2006 120 135.86037
## 1606 00HN Bournemouth UA 2007 150 137.24860
## 1607 00HN Bournemouth UA 2008 125 136.71658
## 1608 00HN Bournemouth UA 2009 125 139.71523
## 1609 00HN Bournemouth UA 2010 100 141.05684
## 1610 00HN Bournemouth UA 2011 95 146.99455
## 1611 00HN Bournemouth UA 2012 80 146.28389
## 1612 00HN Bournemouth UA 2013 85 148.82430
## 1613 00HN Bournemouth UA 2014 65 148.33248
## 1614 00HN Bournemouth UA 2015 75 146.61037
## 1615 00HN Bournemouth UA 2016 60 144.25112
## 1616 00HN Bournemouth UA 2017 100 146.11612
## 1617 00HP Poole UA 2002 165 101.34596
## 1618 00HP Poole UA 2003 160 102.56802
## 1619 00HP Poole UA 2004 130 102.36667
## 1620 00HP Poole UA 2005 130 106.67015
## 1621 00HP Poole UA 2006 110 109.32130
## 1622 00HP Poole UA 2007 115 113.76603
## 1623 00HP Poole UA 2008 100 113.07081
## 1624 00HP Poole UA 2009 90 112.22170
## 1625 00HP Poole UA 2010 105 118.30436
## 1626 00HP Poole UA 2011 75 117.40949
## 1627 00HP Poole UA 2012 80 125.11101
## 1628 00HP Poole UA 2013 90 123.07374
## 1629 00HP Poole UA 2014 75 124.63533
## 1630 00HP Poole UA 2015 80 123.77122
## 1631 00HP Poole UA 2016 75 127.13799
## 1632 00HP Poole UA 2017 85 125.08555
## 1633 00HX Swindon UA 2002 140 74.10332
## 1634 00HX Swindon UA 2003 120 74.80116
## 1635 00HX Swindon UA 2004 110 78.25869
## 1636 00HX Swindon UA 2005 110 79.85597
## 1637 00HX Swindon UA 2006 110 80.31781
## 1638 00HX Swindon UA 2007 105 85.42144
## 1639 00HX Swindon UA 2008 110 85.65061
## 1640 00HX Swindon UA 2009 125 91.28450
## 1641 00HX Swindon UA 2010 85 96.00949
## 1642 00HX Swindon UA 2011 100 99.53830
## 1643 00HX Swindon UA 2012 100 104.23203
## 1644 00HX Swindon UA 2013 115 105.69318
## 1645 00HX Swindon UA 2014 85 113.46825
## 1646 00HX Swindon UA 2015 115 113.75800
## 1647 00HX Swindon UA 2016 125 115.36812
## 1648 00HX Swindon UA 2017 90 122.17957
## 1649 00HY Wiltshire UA 2002 350 245.14688
## 1650 00HY Wiltshire UA 2003 375 247.37567
## 1651 00HY Wiltshire UA 2004 335 254.77228
## 1652 00HY Wiltshire UA 2005 315 259.77808
## 1653 00HY Wiltshire UA 2006 285 270.39395
## 1654 00HY Wiltshire UA 2007 335 279.01396
## 1655 00HY Wiltshire UA 2008 350 281.22807
## 1656 00HY Wiltshire UA 2009 325 288.59136
## 1657 00HY Wiltshire UA 2010 280 293.83848
## 1658 00HY Wiltshire UA 2011 245 310.10018
## 1659 00HY Wiltshire UA 2012 280 325.01607
## 1660 00HY Wiltshire UA 2013 315 330.19739
## 1661 00HY Wiltshire UA 2014 260 341.19666
## 1662 00HY Wiltshire UA 2015 305 347.69942
## 1663 00HY Wiltshire UA 2016 250 355.10837
## 1664 00HY Wiltshire UA 2017 225 366.77321
## 1665 00JA Peterborough UA 2002 110 67.81662
## 1666 00JA Peterborough UA 2003 110 68.95726
## 1667 00JA Peterborough UA 2004 110 70.72256
## 1668 00JA Peterborough UA 2005 120 71.40587
## 1669 00JA Peterborough UA 2006 95 71.58456
## 1670 00JA Peterborough UA 2007 110 74.36992
## 1671 00JA Peterborough UA 2008 85 74.60323
## 1672 00JA Peterborough UA 2009 75 80.21444
## 1673 00JA Peterborough UA 2010 75 81.94681
## 1674 00JA Peterborough UA 2011 70 86.69728
## 1675 00JA Peterborough UA 2012 85 88.72261
## 1676 00JA Peterborough UA 2013 75 89.51961
## 1677 00JA Peterborough UA 2014 75 96.52399
## 1678 00JA Peterborough UA 2015 90 99.64131
## 1679 00JA Peterborough UA 2016 70 99.20912
## 1680 00JA Peterborough UA 2017 60 104.21911
## 1681 00KA Luton UA 2002 115 66.58443
## 1682 00KA Luton UA 2003 125 67.34649
## 1683 00KA Luton UA 2004 100 67.03658
## 1684 00KA Luton UA 2005 95 66.95145
## 1685 00KA Luton UA 2006 90 69.93788
## 1686 00KA Luton UA 2007 75 68.61086
## 1687 00KA Luton UA 2008 85 69.74179
## 1688 00KA Luton UA 2009 85 74.02372
## 1689 00KA Luton UA 2010 50 79.38142
## 1690 00KA Luton UA 2011 70 76.23998
## 1691 00KA Luton UA 2012 85 83.24759
## 1692 00KA Luton UA 2013 75 86.44212
## 1693 00KA Luton UA 2014 70 91.38144
## 1694 00KA Luton UA 2015 65 94.16061
## 1695 00KA Luton UA 2016 85 96.51513
## 1696 00KA Luton UA 2017 65 95.81464
## 1697 00KB Bedford UA 2002 105 71.90879
## 1698 00KB Bedford UA 2003 110 74.93023
## 1699 00KB Bedford UA 2004 85 75.57351
## 1700 00KB Bedford UA 2005 115 77.05889
## 1701 00KB Bedford UA 2006 90 79.58981
## 1702 00KB Bedford UA 2007 75 78.85436
## 1703 00KB Bedford UA 2008 60 82.12128
## 1704 00KB Bedford UA 2009 75 86.03174
## 1705 00KB Bedford UA 2010 100 87.83451
## 1706 00KB Bedford UA 2011 65 89.28737
## 1707 00KB Bedford UA 2012 90 90.41936
## 1708 00KB Bedford UA 2013 75 99.18371
## 1709 00KB Bedford UA 2014 60 101.34263
## 1710 00KB Bedford UA 2015 60 99.23755
## 1711 00KB Bedford UA 2016 65 107.81273
## 1712 00KB Bedford UA 2017 55 111.77056
## 1713 00KC Central Bedfordshire UA 2002 130 96.91045
## 1714 00KC Central Bedfordshire UA 2003 135 100.28569
## 1715 00KC Central Bedfordshire UA 2004 140 102.23331
## 1716 00KC Central Bedfordshire UA 2005 130 105.16767
## 1717 00KC Central Bedfordshire UA 2006 125 109.57338
## 1718 00KC Central Bedfordshire UA 2007 80 112.06715
## 1719 00KC Central Bedfordshire UA 2008 110 117.30764
## 1720 00KC Central Bedfordshire UA 2009 115 117.27621
## 1721 00KC Central Bedfordshire UA 2010 115 126.31159
## 1722 00KC Central Bedfordshire UA 2011 95 129.18006
## 1723 00KC Central Bedfordshire UA 2012 115 132.27262
## 1724 00KC Central Bedfordshire UA 2013 120 137.03387
## 1725 00KC Central Bedfordshire UA 2014 90 143.29240
## 1726 00KC Central Bedfordshire UA 2015 125 145.94265
## 1727 00KC Central Bedfordshire UA 2016 90 155.98067
## 1728 00KC Central Bedfordshire UA 2017 90 158.25090
## 1729 00KF Southend-on-Sea UA 2002 175 119.01628
## 1730 00KF Southend-on-Sea UA 2003 195 117.88152
## 1731 00KF Southend-on-Sea UA 2004 155 117.04761
## 1732 00KF Southend-on-Sea UA 2005 185 119.40263
## 1733 00KF Southend-on-Sea UA 2006 200 117.85381
## 1734 00KF Southend-on-Sea UA 2007 135 116.76889
## 1735 00KF Southend-on-Sea UA 2008 140 117.72934
## 1736 00KF Southend-on-Sea UA 2009 155 118.24548
## 1737 00KF Southend-on-Sea UA 2010 170 122.22972
## 1738 00KF Southend-on-Sea UA 2011 130 123.30420
## 1739 00KF Southend-on-Sea UA 2012 105 124.75368
## 1740 00KF Southend-on-Sea UA 2013 125 128.30510
## 1741 00KF Southend-on-Sea UA 2014 100 134.14374
## 1742 00KF Southend-on-Sea UA 2015 115 131.42050
## 1743 00KF Southend-on-Sea UA 2016 120 136.04721
## 1744 00KF Southend-on-Sea UA 2017 130 133.98688
## 1745 00KG Thurrock UA 2002 70 57.29353
## 1746 00KG Thurrock UA 2003 75 57.17509
## 1747 00KG Thurrock UA 2004 75 56.17283
## 1748 00KG Thurrock UA 2005 90 59.30038
## 1749 00KG Thurrock UA 2006 65 59.03881
## 1750 00KG Thurrock UA 2007 65 60.60207
## 1751 00KG Thurrock UA 2008 75 61.21431
## 1752 00KG Thurrock UA 2009 80 63.56635
## 1753 00KG Thurrock UA 2010 65 68.45343
## 1754 00KG Thurrock UA 2011 70 69.90521
## 1755 00KG Thurrock UA 2012 70 68.06215
## 1756 00KG Thurrock UA 2013 70 71.64620
## 1757 00KG Thurrock UA 2014 60 75.56073
## 1758 00KG Thurrock UA 2015 85 74.68742
## 1759 00KG Thurrock UA 2016 70 75.21121
## 1760 00KG Thurrock UA 2017 50 74.48707
## 1761 00LC Medway UA 2002 130 98.75431
## 1762 00LC Medway UA 2003 140 99.78433
## 1763 00LC Medway UA 2004 105 98.43923
## 1764 00LC Medway UA 2005 130 103.66562
## 1765 00LC Medway UA 2006 115 105.29267
## 1766 00LC Medway UA 2007 125 108.68281
## 1767 00LC Medway UA 2008 140 110.04933
## 1768 00LC Medway UA 2009 110 111.26233
## 1769 00LC Medway UA 2010 105 114.02322
## 1770 00LC Medway UA 2011 105 119.15699
## 1771 00LC Medway UA 2012 110 122.95921
## 1772 00LC Medway UA 2013 120 126.91921
## 1773 00LC Medway UA 2014 100 134.06674
## 1774 00LC Medway UA 2015 105 130.83219
## 1775 00LC Medway UA 2016 85 136.77686
## 1776 00LC Medway UA 2017 105 140.94537
## 1777 00MA Bracknell Forest UA 2002 60 38.20957
## 1778 00MA Bracknell Forest UA 2003 60 40.15855
## 1779 00MA Bracknell Forest UA 2004 65 40.54074
## 1780 00MA Bracknell Forest UA 2005 65 41.21577
## 1781 00MA Bracknell Forest UA 2006 55 43.57586
## 1782 00MA Bracknell Forest UA 2007 65 43.90985
## 1783 00MA Bracknell Forest UA 2008 45 42.56124
## 1784 00MA Bracknell Forest UA 2009 65 45.86886
## 1785 00MA Bracknell Forest UA 2010 45 47.52655
## 1786 00MA Bracknell Forest UA 2011 45 48.75753
## 1787 00MA Bracknell Forest UA 2012 70 53.64356
## 1788 00MA Bracknell Forest UA 2013 50 52.29103
## 1789 00MA Bracknell Forest UA 2014 45 56.44230
## 1790 00MA Bracknell Forest UA 2015 45 54.54804
## 1791 00MA Bracknell Forest UA 2016 45 59.51584
## 1792 00MA Bracknell Forest UA 2017 45 55.34754
## 1793 00MB West Berkshire UA 2002 70 61.69684
## 1794 00MB West Berkshire UA 2003 70 63.23190
## 1795 00MB West Berkshire UA 2004 70 64.97415
## 1796 00MB West Berkshire UA 2005 55 66.01883
## 1797 00MB West Berkshire UA 2006 70 68.21360
## 1798 00MB West Berkshire UA 2007 80 70.50624
## 1799 00MB West Berkshire UA 2008 95 72.88966
## 1800 00MB West Berkshire UA 2009 75 75.37108
## 1801 00MB West Berkshire UA 2010 55 78.01314
## 1802 00MB West Berkshire UA 2011 90 83.32847
## 1803 00MB West Berkshire UA 2012 70 83.10571
## 1804 00MB West Berkshire UA 2013 90 88.31732
## 1805 00MB West Berkshire UA 2014 65 90.80042
## 1806 00MB West Berkshire UA 2015 60 90.22854
## 1807 00MB West Berkshire UA 2016 65 95.37324
## 1808 00MB West Berkshire UA 2017 70 96.24998
## 1809 00MC Reading UA 2002 120 63.31863
## 1810 00MC Reading UA 2003 95 61.55299
## 1811 00MC Reading UA 2004 100 63.06929
## 1812 00MC Reading UA 2005 85 65.18495
## 1813 00MC Reading UA 2006 90 63.78697
## 1814 00MC Reading UA 2007 70 64.99998
## 1815 00MC Reading UA 2008 105 66.67889
## 1816 00MC Reading UA 2009 70 65.15540
## 1817 00MC Reading UA 2010 80 67.29006
## 1818 00MC Reading UA 2011 85 68.66438
## 1819 00MC Reading UA 2012 75 71.35921
## 1820 00MC Reading UA 2013 85 68.40414
## 1821 00MC Reading UA 2014 60 70.51067
## 1822 00MC Reading UA 2015 70 75.05584
## 1823 00MC Reading UA 2016 70 77.07258
## 1824 00MC Reading UA 2017 70 74.09772
## 1825 00MD Slough UA 2002 95 42.27651
## 1826 00MD Slough UA 2003 90 42.40669
## 1827 00MD Slough UA 2004 110 43.06337
## 1828 00MD Slough UA 2005 85 43.88732
## 1829 00MD Slough UA 2006 70 45.49577
## 1830 00MD Slough UA 2007 70 44.43447
## 1831 00MD Slough UA 2008 55 46.29248
## 1832 00MD Slough UA 2009 55 44.88265
## 1833 00MD Slough UA 2010 65 46.43235
## 1834 00MD Slough UA 2011 65 47.81428
## 1835 00MD Slough UA 2012 35 46.74894
## 1836 00MD Slough UA 2013 50 49.13399
## 1837 00MD Slough UA 2014 40 48.27003
## 1838 00MD Slough UA 2015 45 49.22950
## 1839 00MD Slough UA 2016 45 50.82446
## 1840 00MD Slough UA 2017 45 53.22220
## 1841 00ME Windsor and Maidenhead UA 2002 140 67.30795
## 1842 00ME Windsor and Maidenhead UA 2003 140 68.64078
## 1843 00ME Windsor and Maidenhead UA 2004 140 66.79011
## 1844 00ME Windsor and Maidenhead UA 2005 145 71.04253
## 1845 00ME Windsor and Maidenhead UA 2006 145 72.53880
## 1846 00ME Windsor and Maidenhead UA 2007 105 75.82941
## 1847 00ME Windsor and Maidenhead UA 2008 110 79.33812
## 1848 00ME Windsor and Maidenhead UA 2009 100 81.93882
## 1849 00ME Windsor and Maidenhead UA 2010 95 83.68406
## 1850 00ME Windsor and Maidenhead UA 2011 100 88.73549
## 1851 00ME Windsor and Maidenhead UA 2012 110 92.09270
## 1852 00ME Windsor and Maidenhead UA 2013 100 95.74364
## 1853 00ME Windsor and Maidenhead UA 2014 95 99.86720
## 1854 00ME Windsor and Maidenhead UA 2015 85 100.23475
## 1855 00ME Windsor and Maidenhead UA 2016 65 103.76008
## 1856 00ME Windsor and Maidenhead UA 2017 65 109.65569
## 1857 00MF Wokingham UA 2002 100 56.80813
## 1858 00MF Wokingham UA 2003 75 60.57225
## 1859 00MF Wokingham UA 2004 60 58.39165
## 1860 00MF Wokingham UA 2005 80 64.79337
## 1861 00MF Wokingham UA 2006 100 68.00930
## 1862 00MF Wokingham UA 2007 95 70.79282
## 1863 00MF Wokingham UA 2008 115 69.92102
## 1864 00MF Wokingham UA 2009 85 72.92701
## 1865 00MF Wokingham UA 2010 65 75.26936
## 1866 00MF Wokingham UA 2011 90 81.64022
## 1867 00MF Wokingham UA 2012 70 84.87453
## 1868 00MF Wokingham UA 2013 85 88.26243
## 1869 00MF Wokingham UA 2014 65 89.53310
## 1870 00MF Wokingham UA 2015 85 95.96308
## 1871 00MF Wokingham UA 2016 65 93.65719
## 1872 00MF Wokingham UA 2017 60 102.24219
## 1873 00MG Milton Keynes UA 2002 120 69.79951
## 1874 00MG Milton Keynes UA 2003 150 69.70982
## 1875 00MG Milton Keynes UA 2004 175 72.23071
## 1876 00MG Milton Keynes UA 2005 155 75.59053
## 1877 00MG Milton Keynes UA 2006 160 77.44947
## 1878 00MG Milton Keynes UA 2007 150 82.31261
## 1879 00MG Milton Keynes UA 2008 145 84.58331
## 1880 00MG Milton Keynes UA 2009 155 86.37200
## 1881 00MG Milton Keynes UA 2010 140 92.07619
## 1882 00MG Milton Keynes UA 2011 115 94.93459
## 1883 00MG Milton Keynes UA 2012 150 98.63918
## 1884 00MG Milton Keynes UA 2013 95 104.22183
## 1885 00MG Milton Keynes UA 2014 105 106.59734
## 1886 00MG Milton Keynes UA 2015 120 106.21358
## 1887 00MG Milton Keynes UA 2016 70 108.50346
## 1888 00MG Milton Keynes UA 2017 75 112.26765
## 1889 00ML Brighton and Hove UA 2002 200 152.92445
## 1890 00ML Brighton and Hove UA 2003 235 153.19049
## 1891 00ML Brighton and Hove UA 2004 150 149.27564
## 1892 00ML Brighton and Hove UA 2005 150 152.18269
## 1893 00ML Brighton and Hove UA 2006 135 152.38740
## 1894 00ML Brighton and Hove UA 2007 140 150.30717
## 1895 00ML Brighton and Hove UA 2008 120 147.67120
## 1896 00ML Brighton and Hove UA 2009 130 144.65774
## 1897 00ML Brighton and Hove UA 2010 105 148.22904
## 1898 00ML Brighton and Hove UA 2011 75 144.83254
## 1899 00ML Brighton and Hove UA 2012 105 145.45963
## 1900 00ML Brighton and Hove UA 2013 100 150.60716
## 1901 00ML Brighton and Hove UA 2014 90 147.84430
## 1902 00ML Brighton and Hove UA 2015 100 152.27640
## 1903 00ML Brighton and Hove UA 2016 95 150.04279
## 1904 00ML Brighton and Hove UA 2017 95 152.39580
## 1905 00MR Portsmouth UA 2002 150 99.24458
## 1906 00MR Portsmouth UA 2003 155 100.98886
## 1907 00MR Portsmouth UA 2004 140 100.48963
## 1908 00MR Portsmouth UA 2005 105 100.35256
## 1909 00MR Portsmouth UA 2006 125 100.97703
## 1910 00MR Portsmouth UA 2007 115 103.80070
## 1911 00MR Portsmouth UA 2008 105 100.15448
## 1912 00MR Portsmouth UA 2009 95 102.60730
## 1913 00MR Portsmouth UA 2010 85 106.61324
## 1914 00MR Portsmouth UA 2011 60 107.95221
## 1915 00MR Portsmouth UA 2012 80 110.11882
## 1916 00MR Portsmouth UA 2013 65 108.50623
## 1917 00MR Portsmouth UA 2014 50 110.87023
## 1918 00MR Portsmouth UA 2015 70 111.81805
## 1919 00MR Portsmouth UA 2016 85 115.34712
## 1920 00MR Portsmouth UA 2017 60 108.45348
## 1921 00MS Southampton UA 2002 120 104.97376
## 1922 00MS Southampton UA 2003 195 106.47689
## 1923 00MS Southampton UA 2004 130 106.78270
## 1924 00MS Southampton UA 2005 125 109.04137
## 1925 00MS Southampton UA 2006 135 112.54548
## 1926 00MS Southampton UA 2007 110 113.53216
## 1927 00MS Southampton UA 2008 110 111.70577
## 1928 00MS Southampton UA 2009 85 111.52418
## 1929 00MS Southampton UA 2010 80 116.49208
## 1930 00MS Southampton UA 2011 85 117.62513
## 1931 00MS Southampton UA 2012 85 121.10510
## 1932 00MS Southampton UA 2013 90 120.54475
## 1933 00MS Southampton UA 2014 100 121.06079
## 1934 00MS Southampton UA 2015 80 124.91585
## 1935 00MS Southampton UA 2016 90 126.18906
## 1936 00MS Southampton UA 2017 85 122.91711
## 1937 11UB Aylesbury Vale CD 2002 85 70.94215
## 1938 11UB Aylesbury Vale CD 2003 100 73.91348
## 1939 11UB Aylesbury Vale CD 2004 80 72.83309
## 1940 11UB Aylesbury Vale CD 2005 90 76.01155
## 1941 11UB Aylesbury Vale CD 2006 100 77.62697
## 1942 11UB Aylesbury Vale CD 2007 95 78.56306
## 1943 11UB Aylesbury Vale CD 2008 95 81.86752
## 1944 11UB Aylesbury Vale CD 2009 100 83.14445
## 1945 11UB Aylesbury Vale CD 2010 90 86.10457
## 1946 11UB Aylesbury Vale CD 2011 75 90.21886
## 1947 11UB Aylesbury Vale CD 2012 75 92.25399
## 1948 11UB Aylesbury Vale CD 2013 70 98.40303
## 1949 11UB Aylesbury Vale CD 2014 65 105.69851
## 1950 11UB Aylesbury Vale CD 2015 80 104.98359
## 1951 11UB Aylesbury Vale CD 2016 65 104.23501
## 1952 11UB Aylesbury Vale CD 2017 80 113.02750
## 1953 11UC Chiltern CD 2002 50 53.60311
## 1954 11UC Chiltern CD 2003 65 52.78800
## 1955 11UC Chiltern CD 2004 55 54.24137
## 1956 11UC Chiltern CD 2005 60 53.53622
## 1957 11UC Chiltern CD 2006 65 54.72902
## 1958 11UC Chiltern CD 2007 60 55.60742
## 1959 11UC Chiltern CD 2008 50 57.92823
## 1960 11UC Chiltern CD 2009 50 57.98575
## 1961 11UC Chiltern CD 2010 55 64.81415
## 1962 11UC Chiltern CD 2011 40 62.72349
## 1963 11UC Chiltern CD 2012 40 63.26861
## 1964 11UC Chiltern CD 2013 50 72.90603
## 1965 11UC Chiltern CD 2014 50 74.49499
## 1966 11UC Chiltern CD 2015 55 75.39566
## 1967 11UC Chiltern CD 2016 30 79.71557
## 1968 11UC Chiltern CD 2017 45 76.86858
## 1969 11UE South Bucks CD 2002 65 37.45363
## 1970 11UE South Bucks CD 2003 80 38.45509
## 1971 11UE South Bucks CD 2004 70 39.35568
## 1972 11UE South Bucks CD 2005 65 39.01781
## 1973 11UE South Bucks CD 2006 50 39.78536
## 1974 11UE South Bucks CD 2007 60 40.52240
## 1975 11UE South Bucks CD 2008 55 43.43589
## 1976 11UE South Bucks CD 2009 50 45.09588
## 1977 11UE South Bucks CD 2010 45 43.47073
## 1978 11UE South Bucks CD 2011 45 48.38345
## 1979 11UE South Bucks CD 2012 50 50.32317
## 1980 11UE South Bucks CD 2013 40 52.90297
## 1981 11UE South Bucks CD 2014 40 52.95795
## 1982 11UE South Bucks CD 2015 55 55.99490
## 1983 11UE South Bucks CD 2016 20 52.64462
## 1984 11UE South Bucks CD 2017 30 55.25298
## 1985 11UF Wycombe CD 2002 90 76.07574
## 1986 11UF Wycombe CD 2003 105 78.77247
## 1987 11UF Wycombe CD 2004 115 79.74712
## 1988 11UF Wycombe CD 2005 90 80.41697
## 1989 11UF Wycombe CD 2006 65 81.41846
## 1990 11UF Wycombe CD 2007 80 85.03639
## 1991 11UF Wycombe CD 2008 75 84.27275
## 1992 11UF Wycombe CD 2009 80 88.72426
## 1993 11UF Wycombe CD 2010 85 92.12604
## 1994 11UF Wycombe CD 2011 75 90.88195
## 1995 11UF Wycombe CD 2012 85 96.21888
## 1996 11UF Wycombe CD 2013 70 99.99794
## 1997 11UF Wycombe CD 2014 85 101.51608
## 1998 11UF Wycombe CD 2015 80 103.11992
## 1999 11UF Wycombe CD 2016 75 107.94390
## 2000 11UF Wycombe CD 2017 65 117.38528
## 2001 12UB Cambridge CD 2002 60 54.32133
## 2002 12UB Cambridge CD 2003 90 53.23568
## 2003 12UB Cambridge CD 2004 70 51.87350
## 2004 12UB Cambridge CD 2005 55 56.13764
## 2005 12UB Cambridge CD 2006 50 59.26582
## 2006 12UB Cambridge CD 2007 40 60.96355
## 2007 12UB Cambridge CD 2008 55 60.49524
## 2008 12UB Cambridge CD 2009 55 59.08546
## 2009 12UB Cambridge CD 2010 35 63.02877
## 2010 12UB Cambridge CD 2011 30 66.49057
## 2011 12UB Cambridge CD 2012 40 62.94182
## 2012 12UB Cambridge CD 2013 35 69.37622
## 2013 12UB Cambridge CD 2014 30 72.72442
## 2014 12UB Cambridge CD 2015 20 63.69998
## 2015 12UB Cambridge CD 2016 35 68.19937
## 2016 12UB Cambridge CD 2017 35 69.42532
## 2017 12UC East Cambridgeshire CD 2002 50 38.22277
## 2018 12UC East Cambridgeshire CD 2003 50 42.89824
## 2019 12UC East Cambridgeshire CD 2004 50 39.56521
## 2020 12UC East Cambridgeshire CD 2005 40 43.82113
## 2021 12UC East Cambridgeshire CD 2006 25 39.79892
## 2022 12UC East Cambridgeshire CD 2007 40 43.34337
## 2023 12UC East Cambridgeshire CD 2008 20 42.54401
## 2024 12UC East Cambridgeshire CD 2009 40 50.23838
## 2025 12UC East Cambridgeshire CD 2010 20 48.59222
## 2026 12UC East Cambridgeshire CD 2011 25 55.61110
## 2027 12UC East Cambridgeshire CD 2012 25 54.48677
## 2028 12UC East Cambridgeshire CD 2013 20 49.58951
## 2029 12UC East Cambridgeshire CD 2014 25 51.17586
## 2030 12UC East Cambridgeshire CD 2015 30 54.91378
## 2031 12UC East Cambridgeshire CD 2016 25 54.23373
## 2032 12UC East Cambridgeshire CD 2017 30 60.57924
## 2033 12UD Fenland CD 2002 65 49.78193
## 2034 12UD Fenland CD 2003 75 51.01440
## 2035 12UD Fenland CD 2004 60 53.23456
## 2036 12UD Fenland CD 2005 60 54.58227
## 2037 12UD Fenland CD 2006 80 57.09512
## 2038 12UD Fenland CD 2007 75 57.74999
## 2039 12UD Fenland CD 2008 80 58.27934
## 2040 12UD Fenland CD 2009 60 60.00855
## 2041 12UD Fenland CD 2010 60 64.74473
## 2042 12UD Fenland CD 2011 40 67.55361
## 2043 12UD Fenland CD 2012 50 65.71936
## 2044 12UD Fenland CD 2013 65 69.50857
## 2045 12UD Fenland CD 2014 50 70.45042
## 2046 12UD Fenland CD 2015 65 73.38944
## 2047 12UD Fenland CD 2016 55 75.41041
## 2048 12UD Fenland CD 2017 60 82.33034
## 2049 12UE Huntingdonshire CD 2002 80 68.86485
## 2050 12UE Huntingdonshire CD 2003 115 67.51328
## 2051 12UE Huntingdonshire CD 2004 80 72.91836
## 2052 12UE Huntingdonshire CD 2005 90 73.83560
## 2053 12UE Huntingdonshire CD 2006 80 73.93786
## 2054 12UE Huntingdonshire CD 2007 90 78.10141
## 2055 12UE Huntingdonshire CD 2008 80 80.55757
## 2056 12UE Huntingdonshire CD 2009 55 81.90965
## 2057 12UE Huntingdonshire CD 2010 60 84.83905
## 2058 12UE Huntingdonshire CD 2011 45 87.28441
## 2059 12UE Huntingdonshire CD 2012 55 97.60286
## 2060 12UE Huntingdonshire CD 2013 65 95.97617
## 2061 12UE Huntingdonshire CD 2014 45 99.60983
## 2062 12UE Huntingdonshire CD 2015 85 106.44176
## 2063 12UE Huntingdonshire CD 2016 50 105.73409
## 2064 12UE Huntingdonshire CD 2017 55 111.77056
## 2065 12UG South Cambridgeshire CD 2002 80 67.37498
## 2066 12UG South Cambridgeshire CD 2003 65 67.57992
## 2067 12UG South Cambridgeshire CD 2004 80 68.80146
## 2068 12UG South Cambridgeshire CD 2005 70 71.88772
## 2069 12UG South Cambridgeshire CD 2006 60 76.43303
## 2070 12UG South Cambridgeshire CD 2007 70 77.30946
## 2071 12UG South Cambridgeshire CD 2008 65 80.94098
## 2072 12UG South Cambridgeshire CD 2009 70 80.59977
## 2073 12UG South Cambridgeshire CD 2010 60 83.59079
## 2074 12UG South Cambridgeshire CD 2011 55 91.03222
## 2075 12UG South Cambridgeshire CD 2012 40 91.54987
## 2076 12UG South Cambridgeshire CD 2013 50 97.06328
## 2077 12UG South Cambridgeshire CD 2014 50 100.97994
## 2078 12UG South Cambridgeshire CD 2015 55 99.76311
## 2079 12UG South Cambridgeshire CD 2016 50 106.31161
## 2080 12UG South Cambridgeshire CD 2017 50 103.31758
## 2081 16UB Allerdale CD 2002 65 53.84901
## 2082 16UB Allerdale CD 2003 65 52.73300
## 2083 16UB Allerdale CD 2004 40 57.81948
## 2084 16UB Allerdale CD 2005 55 56.62429
## 2085 16UB Allerdale CD 2006 35 60.67416
## 2086 16UB Allerdale CD 2007 60 61.02328
## 2087 16UB Allerdale CD 2008 35 64.50419
## 2088 16UB Allerdale CD 2009 50 62.46767
## 2089 16UB Allerdale CD 2010 45 66.29834
## 2090 16UB Allerdale CD 2011 55 69.10255
## 2091 16UB Allerdale CD 2012 50 71.65353
## 2092 16UB Allerdale CD 2013 35 74.01386
## 2093 16UB Allerdale CD 2014 35 67.27333
## 2094 16UB Allerdale CD 2015 45 69.61363
## 2095 16UB Allerdale CD 2016 45 79.23481
## 2096 16UB Allerdale CD 2017 65 78.08244
## 2097 16UC Barrow-in-Furness CD 2002 50 36.44353
## 2098 16UC Barrow-in-Furness CD 2003 45 40.40945
## 2099 16UC Barrow-in-Furness CD 2004 65 38.26548
## 2100 16UC Barrow-in-Furness CD 2005 60 41.23381
## 2101 16UC Barrow-in-Furness CD 2006 50 40.74310
## 2102 16UC Barrow-in-Furness CD 2007 45 41.66974
## 2103 16UC Barrow-in-Furness CD 2008 45 39.73473
## 2104 16UC Barrow-in-Furness CD 2009 40 39.72221
## 2105 16UC Barrow-in-Furness CD 2010 45 45.75750
## 2106 16UC Barrow-in-Furness CD 2011 40 45.29045
## 2107 16UC Barrow-in-Furness CD 2012 30 43.39594
## 2108 16UC Barrow-in-Furness CD 2013 40 42.22355
## 2109 16UC Barrow-in-Furness CD 2014 35 45.53801
## 2110 16UC Barrow-in-Furness CD 2015 45 43.38699
## 2111 16UC Barrow-in-Furness CD 2016 35 45.96045
## 2112 16UC Barrow-in-Furness CD 2017 30 47.82390
## 2113 16UD Carlisle CD 2002 75 56.72458
## 2114 16UD Carlisle CD 2003 95 57.51133
## 2115 16UD Carlisle CD 2004 65 56.87144
## 2116 16UD Carlisle CD 2005 70 59.63040
## 2117 16UD Carlisle CD 2006 65 59.77883
## 2118 16UD Carlisle CD 2007 75 61.85556
## 2119 16UD Carlisle CD 2008 60 62.47881
## 2120 16UD Carlisle CD 2009 70 63.08552
## 2121 16UD Carlisle CD 2010 60 69.26193
## 2122 16UD Carlisle CD 2011 60 69.81400
## 2123 16UD Carlisle CD 2012 65 73.13020
## 2124 16UD Carlisle CD 2013 70 74.00828
## 2125 16UD Carlisle CD 2014 55 75.96785
## 2126 16UD Carlisle CD 2015 70 77.15138
## 2127 16UD Carlisle CD 2016 55 81.54569
## 2128 16UD Carlisle CD 2017 50 82.58101
## 2129 16UE Copeland CD 2002 20 30.86104
## 2130 16UE Copeland CD 2003 45 33.99072
## 2131 16UE Copeland CD 2004 40 33.05188
## 2132 16UE Copeland CD 2005 45 36.75213
## 2133 16UE Copeland CD 2006 40 33.39250
## 2134 16UE Copeland CD 2007 35 34.69056
## 2135 16UE Copeland CD 2008 30 37.88932
## 2136 16UE Copeland CD 2009 40 41.05463
## 2137 16UE Copeland CD 2010 30 41.85365
## 2138 16UE Copeland CD 2011 25 43.14654
## 2139 16UE Copeland CD 2012 35 44.47678
## 2140 16UE Copeland CD 2013 35 47.07648
## 2141 16UE Copeland CD 2014 25 48.92472
## 2142 16UE Copeland CD 2015 25 48.02603
## 2143 16UE Copeland CD 2016 35 45.63970
## 2144 16UE Copeland CD 2017 45 45.89069
## 2145 16UF Eden CD 2002 35 30.99266
## 2146 16UF Eden CD 2003 20 29.15634
## 2147 16UF Eden CD 2004 35 33.40529
## 2148 16UF Eden CD 2005 30 30.94281
## 2149 16UF Eden CD 2006 30 34.38174
## 2150 16UF Eden CD 2007 25 31.93709
## 2151 16UF Eden CD 2008 25 35.97022
## 2152 16UF Eden CD 2009 30 39.14889
## 2153 16UF Eden CD 2010 25 37.28713
## 2154 16UF Eden CD 2011 25 42.01846
## 2155 16UF Eden CD 2012 25 40.20541
## 2156 16UF Eden CD 2013 20 43.12662
## 2157 16UF Eden CD 2014 30 45.38701
## 2158 16UF Eden CD 2015 35 44.64681
## 2159 16UF Eden CD 2016 20 49.13744
## 2160 16UF Eden CD 2017 30 51.12110
## 2161 16UG South Lakeland CD 2002 85 75.87196
## 2162 16UG South Lakeland CD 2003 70 78.59785
## 2163 16UG South Lakeland CD 2004 90 77.91325
## 2164 16UG South Lakeland CD 2005 70 80.00161
## 2165 16UG South Lakeland CD 2006 80 82.43527
## 2166 16UG South Lakeland CD 2007 55 80.42256
## 2167 16UG South Lakeland CD 2008 65 84.65704
## 2168 16UG South Lakeland CD 2009 70 82.84602
## 2169 16UG South Lakeland CD 2010 80 84.26304
## 2170 16UG South Lakeland CD 2011 70 87.20595
## 2171 16UG South Lakeland CD 2012 65 94.50252
## 2172 16UG South Lakeland CD 2013 55 90.76423
## 2173 16UG South Lakeland CD 2014 50 96.68826
## 2174 16UG South Lakeland CD 2015 60 94.54012
## 2175 16UG South Lakeland CD 2016 65 100.21010
## 2176 16UG South Lakeland CD 2017 35 96.32559
## 2177 17UB Amber Valley CD 2002 85 64.47227
## 2178 17UB Amber Valley CD 2003 115 66.89675
## 2179 17UB Amber Valley CD 2004 85 65.96831
## 2180 17UB Amber Valley CD 2005 90 68.08787
## 2181 17UB Amber Valley CD 2006 85 68.44344
## 2182 17UB Amber Valley CD 2007 85 72.39955
## 2183 17UB Amber Valley CD 2008 95 72.04555
## 2184 17UB Amber Valley CD 2009 85 72.88239
## 2185 17UB Amber Valley CD 2010 70 79.23268
## 2186 17UB Amber Valley CD 2011 80 79.36569
## 2187 17UB Amber Valley CD 2012 75 81.21859
## 2188 17UB Amber Valley CD 2013 80 86.61977
## 2189 17UB Amber Valley CD 2014 70 88.80860
## 2190 17UB Amber Valley CD 2015 80 87.15172
## 2191 17UB Amber Valley CD 2016 75 87.92452
## 2192 17UB Amber Valley CD 2017 70 92.07619
## 2193 17UC Bolsover CD 2002 45 37.05446
## 2194 17UC Bolsover CD 2003 60 40.15280
## 2195 17UC Bolsover CD 2004 60 39.26039
## 2196 17UC Bolsover CD 2005 50 39.93729
## 2197 17UC Bolsover CD 2006 35 39.89669
## 2198 17UC Bolsover CD 2007 40 42.33836
## 2199 17UC Bolsover CD 2008 40 41.24797
## 2200 17UC Bolsover CD 2009 35 42.60683
## 2201 17UC Bolsover CD 2010 50 45.83032
## 2202 17UC Bolsover CD 2011 35 45.00733
## 2203 17UC Bolsover CD 2012 55 46.06286
## 2204 17UC Bolsover CD 2013 50 46.26303
## 2205 17UC Bolsover CD 2014 35 45.25649
## 2206 17UC Bolsover CD 2015 45 50.55960
## 2207 17UC Bolsover CD 2016 45 49.80885
## 2208 17UC Bolsover CD 2017 45 48.70857
## 2209 17UD Chesterfield CD 2002 75 56.64204
## 2210 17UD Chesterfield CD 2003 60 53.84821
## 2211 17UD Chesterfield CD 2004 75 55.72313
## 2212 17UD Chesterfield CD 2005 85 58.78354
## 2213 17UD Chesterfield CD 2006 65 56.98172
## 2214 17UD Chesterfield CD 2007 75 62.01615
## 2215 17UD Chesterfield CD 2008 80 61.62369
## 2216 17UD Chesterfield CD 2009 65 61.89928
## 2217 17UD Chesterfield CD 2010 65 64.81498
## 2218 17UD Chesterfield CD 2011 60 68.39432
## 2219 17UD Chesterfield CD 2012 60 71.28177
## 2220 17UD Chesterfield CD 2013 65 68.72198
## 2221 17UD Chesterfield CD 2014 50 75.79230
## 2222 17UD Chesterfield CD 2015 60 71.09494
## 2223 17UD Chesterfield CD 2016 55 71.61957
## 2224 17UD Chesterfield CD 2017 75 72.75211
## 2225 17UF Derbyshire Dales CD 2002 55 44.63832
## 2226 17UF Derbyshire Dales CD 2003 45 43.89739
## 2227 17UF Derbyshire Dales CD 2004 40 44.48888
## 2228 17UF Derbyshire Dales CD 2005 60 46.95855
## 2229 17UF Derbyshire Dales CD 2006 55 47.64014
## 2230 17UF Derbyshire Dales CD 2007 40 48.66816
## 2231 17UF Derbyshire Dales CD 2008 60 50.50392
## 2232 17UF Derbyshire Dales CD 2009 60 51.23948
## 2233 17UF Derbyshire Dales CD 2010 35 54.05443
## 2234 17UF Derbyshire Dales CD 2011 30 50.92295
## 2235 17UF Derbyshire Dales CD 2012 55 59.36305
## 2236 17UF Derbyshire Dales CD 2013 45 56.12084
## 2237 17UF Derbyshire Dales CD 2014 45 62.00274
## 2238 17UF Derbyshire Dales CD 2015 55 59.36762
## 2239 17UF Derbyshire Dales CD 2016 35 58.53800
## 2240 17UF Derbyshire Dales CD 2017 30 62.73051
## 2241 17UG Erewash CD 2002 75 57.86763
## 2242 17UG Erewash CD 2003 100 57.86126
## 2243 17UG Erewash CD 2004 60 59.25998
## 2244 17UG Erewash CD 2005 75 58.98147
## 2245 17UG Erewash CD 2006 65 60.88562
## 2246 17UG Erewash CD 2007 70 62.86720
## 2247 17UG Erewash CD 2008 55 62.33480
## 2248 17UG Erewash CD 2009 70 62.35966
## 2249 17UG Erewash CD 2010 55 65.68128
## 2250 17UG Erewash CD 2011 55 72.57720
## 2251 17UG Erewash CD 2012 60 69.88363
## 2252 17UG Erewash CD 2013 60 72.37389
## 2253 17UG Erewash CD 2014 40 77.77992
## 2254 17UG Erewash CD 2015 55 79.07765
## 2255 17UG Erewash CD 2016 65 78.43205
## 2256 17UG Erewash CD 2017 45 83.70452
## 2257 17UH High Peak CD 2002 80 48.84840
## 2258 17UH High Peak CD 2003 60 47.87836
## 2259 17UH High Peak CD 2004 60 49.58659
## 2260 17UH High Peak CD 2005 55 51.57376
## 2261 17UH High Peak CD 2006 60 52.30404
## 2262 17UH High Peak CD 2007 70 52.20754
## 2263 17UH High Peak CD 2008 45 51.36677
## 2264 17UH High Peak CD 2009 60 50.58596
## 2265 17UH High Peak CD 2010 40 52.64462
## 2266 17UH High Peak CD 2011 45 54.03855
## 2267 17UH High Peak CD 2012 50 55.72166
## 2268 17UH High Peak CD 2013 45 55.77833
## 2269 17UH High Peak CD 2014 45 58.51084
## 2270 17UH High Peak CD 2015 40 54.09243
## 2271 17UH High Peak CD 2016 45 59.45973
## 2272 17UH High Peak CD 2017 50 59.52764
## 2273 17UJ North East Derbyshire CD 2002 60 52.56563
## 2274 17UJ North East Derbyshire CD 2003 55 53.87362
## 2275 17UJ North East Derbyshire CD 2004 70 53.62596
## 2276 17UJ North East Derbyshire CD 2005 70 55.46019
## 2277 17UJ North East Derbyshire CD 2006 40 54.86004
## 2278 17UJ North East Derbyshire CD 2007 60 60.39214
## 2279 17UJ North East Derbyshire CD 2008 70 61.80568
## 2280 17UJ North East Derbyshire CD 2009 55 62.79695
## 2281 17UJ North East Derbyshire CD 2010 55 65.39707
## 2282 17UJ North East Derbyshire CD 2011 65 66.57237
## 2283 17UJ North East Derbyshire CD 2012 45 66.55022
## 2284 17UJ North East Derbyshire CD 2013 65 69.23385
## 2285 17UJ North East Derbyshire CD 2014 75 74.68555
## 2286 17UJ North East Derbyshire CD 2015 60 76.31510
## 2287 17UJ North East Derbyshire CD 2016 75 75.39271
## 2288 17UJ North East Derbyshire CD 2017 70 74.28288
## 2289 17UK South Derbyshire CD 2002 55 37.64811
## 2290 17UK South Derbyshire CD 2003 55 37.27127
## 2291 17UK South Derbyshire CD 2004 60 39.89939
## 2292 17UK South Derbyshire CD 2005 60 40.75218
## 2293 17UK South Derbyshire CD 2006 45 40.94999
## 2294 17UK South Derbyshire CD 2007 40 43.46436
## 2295 17UK South Derbyshire CD 2008 45 42.63317
## 2296 17UK South Derbyshire CD 2009 35 42.04439
## 2297 17UK South Derbyshire CD 2010 40 47.73160
## 2298 17UK South Derbyshire CD 2011 45 50.53529
## 2299 17UK South Derbyshire CD 2012 40 49.01284
## 2300 17UK South Derbyshire CD 2013 40 52.43287
## 2301 17UK South Derbyshire CD 2014 40 50.62860
## 2302 17UK South Derbyshire CD 2015 50 52.28323
## 2303 17UK South Derbyshire CD 2016 45 51.84395
## 2304 17UK South Derbyshire CD 2017 45 57.32999
## 2305 18UB East Devon CD 2002 115 129.89519
## 2306 18UB East Devon CD 2003 155 130.46063
## 2307 18UB East Devon CD 2004 120 132.19712
## 2308 18UB East Devon CD 2005 140 132.41274
## 2309 18UB East Devon CD 2006 140 138.16616
## 2310 18UB East Devon CD 2007 125 139.45940
## 2311 18UB East Devon CD 2008 110 138.64013
## 2312 18UB East Devon CD 2009 120 143.03645
## 2313 18UB East Devon CD 2010 115 143.13968
## 2314 18UB East Devon CD 2011 100 148.45335
## 2315 18UB East Devon CD 2012 105 154.16130
## 2316 18UB East Devon CD 2013 130 157.13469
## 2317 18UB East Devon CD 2014 105 158.30765
## 2318 18UB East Devon CD 2015 105 157.54493
## 2319 18UB East Devon CD 2016 90 162.89031
## 2320 18UB East Devon CD 2017 105 162.79120
## 2321 18UC Exeter CD 2002 85 61.24999
## 2322 18UC Exeter CD 2003 90 65.87589
## 2323 18UC Exeter CD 2004 65 66.91961
## 2324 18UC Exeter CD 2005 45 63.29083
## 2325 18UC Exeter CD 2006 80 68.38598
## 2326 18UC Exeter CD 2007 75 67.42253
## 2327 18UC Exeter CD 2008 55 66.06976
## 2328 18UC Exeter CD 2009 40 67.57804
## 2329 18UC Exeter CD 2010 50 73.82782
## 2330 18UC Exeter CD 2011 60 72.90729
## 2331 18UC Exeter CD 2012 55 75.93791
## 2332 18UC Exeter CD 2013 60 76.36362
## 2333 18UC Exeter CD 2014 35 74.63327
## 2334 18UC Exeter CD 2015 60 80.53250
## 2335 18UC Exeter CD 2016 60 82.76797
## 2336 18UC Exeter CD 2017 65 81.07786
## 2337 18UD Mid Devon CD 2002 45 44.27958
## 2338 18UD Mid Devon CD 2003 55 46.61726
## 2339 18UD Mid Devon CD 2004 40 49.15898
## 2340 18UD Mid Devon CD 2005 40 48.07546
## 2341 18UD Mid Devon CD 2006 50 47.99971
## 2342 18UD Mid Devon CD 2007 45 52.46068
## 2343 18UD Mid Devon CD 2008 45 48.57351
## 2344 18UD Mid Devon CD 2009 55 52.90842
## 2345 18UD Mid Devon CD 2010 40 55.58904
## 2346 18UD Mid Devon CD 2011 40 56.43978
## 2347 18UD Mid Devon CD 2012 35 58.82584
## 2348 18UD Mid Devon CD 2013 40 59.45062
## 2349 18UD Mid Devon CD 2014 45 62.64328
## 2350 18UD Mid Devon CD 2015 50 61.21253
## 2351 18UD Mid Devon CD 2016 45 62.61218
## 2352 18UD Mid Devon CD 2017 35 61.87585
## 2353 18UE North Devon CD 2002 90 63.41175
## 2354 18UE North Devon CD 2003 70 61.64644
## 2355 18UE North Devon CD 2004 85 62.29094
## 2356 18UE North Devon CD 2005 65 62.94291
## 2357 18UE North Devon CD 2006 50 66.68251
## 2358 18UE North Devon CD 2007 75 65.62498
## 2359 18UE North Devon CD 2008 75 66.66982
## 2360 18UE North Devon CD 2009 70 70.55378
## 2361 18UE North Devon CD 2010 45 69.46793
## 2362 18UE North Devon CD 2011 50 76.95770
## 2363 18UE North Devon CD 2012 60 77.66138
## 2364 18UE North Devon CD 2013 45 78.32938
## 2365 18UE North Devon CD 2014 40 77.22274
## 2366 18UE North Devon CD 2015 50 82.70772
## 2367 18UE North Devon CD 2016 60 84.62558
## 2368 18UE North Devon CD 2017 60 85.89639
## 2369 18UG South Hams CD 2002 70 60.72674
## 2370 18UG South Hams CD 2003 60 63.64213
## 2371 18UG South Hams CD 2004 55 60.20698
## 2372 18UG South Hams CD 2005 65 63.26202
## 2373 18UG South Hams CD 2006 50 62.09676
## 2374 18UG South Hams CD 2007 65 63.93695
## 2375 18UG South Hams CD 2008 70 66.81968
## 2376 18UG South Hams CD 2009 60 68.00710
## 2377 18UG South Hams CD 2010 70 68.66240
## 2378 18UG South Hams CD 2011 45 69.90687
## 2379 18UG South Hams CD 2012 60 69.84299
## 2380 18UG South Hams CD 2013 50 75.23082
## 2381 18UG South Hams CD 2014 50 76.88170
## 2382 18UG South Hams CD 2015 60 74.96120
## 2383 18UG South Hams CD 2016 50 73.87452
## 2384 18UG South Hams CD 2017 65 80.35549
## 2385 18UH Teignbridge CD 2002 120 97.68120
## 2386 18UH Teignbridge CD 2003 155 95.83805
## 2387 18UH Teignbridge CD 2004 100 99.07385
## 2388 18UH Teignbridge CD 2005 125 101.75125
## 2389 18UH Teignbridge CD 2006 115 104.97034
## 2390 18UH Teignbridge CD 2007 120 104.49109
## 2391 18UH Teignbridge CD 2008 130 105.90127
## 2392 18UH Teignbridge CD 2009 105 108.82041
## 2393 18UH Teignbridge CD 2010 125 110.05526
## 2394 18UH Teignbridge CD 2011 100 114.02764
## 2395 18UH Teignbridge CD 2012 125 114.67332
## 2396 18UH Teignbridge CD 2013 90 118.16186
## 2397 18UH Teignbridge CD 2014 110 121.03797
## 2398 18UH Teignbridge CD 2015 105 119.79725
## 2399 18UH Teignbridge CD 2016 105 124.94435
## 2400 18UH Teignbridge CD 2017 105 123.97587
## 2401 18UK Torridge CD 2002 45 43.83331
## 2402 18UK Torridge CD 2003 45 40.92076
## 2403 18UK Torridge CD 2004 45 46.39372
## 2404 18UK Torridge CD 2005 40 45.29045
## 2405 18UK Torridge CD 2006 25 45.41741
## 2406 18UK Torridge CD 2007 50 45.69285
## 2407 18UK Torridge CD 2008 40 47.84567
## 2408 18UK Torridge CD 2009 35 47.64813
## 2409 18UK Torridge CD 2010 40 47.96029
## 2410 18UK Torridge CD 2011 50 49.97146
## 2411 18UK Torridge CD 2012 35 52.09664
## 2412 18UK Torridge CD 2013 40 55.09188
## 2413 18UK Torridge CD 2014 35 56.11370
## 2414 18UK Torridge CD 2015 40 57.89114
## 2415 18UK Torridge CD 2016 45 57.21036
## 2416 18UK Torridge CD 2017 40 58.36126
## 2417 18UL West Devon CD 2002 40 35.39335
## 2418 18UL West Devon CD 2003 40 34.91932
## 2419 18UL West Devon CD 2004 35 34.87556
## 2420 18UL West Devon CD 2005 35 38.81072
## 2421 18UL West Devon CD 2006 25 35.61915
## 2422 18UL West Devon CD 2007 40 38.71805
## 2423 18UL West Devon CD 2008 25 39.44494
## 2424 18UL West Devon CD 2009 35 40.25028
## 2425 18UL West Devon CD 2010 30 45.48030
## 2426 18UL West Devon CD 2011 40 47.21697
## 2427 18UL West Devon CD 2012 35 46.96829
## 2428 18UL West Devon CD 2013 40 46.64724
## 2429 18UL West Devon CD 2014 30 46.75488
## 2430 18UL West Devon CD 2015 40 48.52072
## 2431 18UL West Devon CD 2016 35 51.15131
## 2432 18UL West Devon CD 2017 25 48.78166
## 2433 19UC Christchurch CD 2002 50 49.60004
## 2434 19UC Christchurch CD 2003 50 50.06429
## 2435 19UC Christchurch CD 2004 40 48.04250
## 2436 19UC Christchurch CD 2005 45 51.45898
## 2437 19UC Christchurch CD 2006 35 52.59381
## 2438 19UC Christchurch CD 2007 35 52.64462
## 2439 19UC Christchurch CD 2008 50 52.41228
## 2440 19UC Christchurch CD 2009 40 55.81042
## 2441 19UC Christchurch CD 2010 30 59.92302
## 2442 19UC Christchurch CD 2011 20 57.98095
## 2443 19UC Christchurch CD 2012 20 62.67440
## 2444 19UC Christchurch CD 2013 35 65.04308
## 2445 19UC Christchurch CD 2014 15 55.11535
## 2446 19UC Christchurch CD 2015 25 59.90936
## 2447 19UC Christchurch CD 2016 25 67.67431
## 2448 19UC Christchurch CD 2017 25 61.00469
## 2449 19UD East Dorset CD 2002 80 71.39526
## 2450 19UD East Dorset CD 2003 75 74.50027
## 2451 19UD East Dorset CD 2004 50 70.84216
## 2452 19UD East Dorset CD 2005 70 74.35608
## 2453 19UD East Dorset CD 2006 70 77.44373
## 2454 19UD East Dorset CD 2007 55 77.24692
## 2455 19UD East Dorset CD 2008 45 80.41697
## 2456 19UD East Dorset CD 2009 50 83.67564
## 2457 19UD East Dorset CD 2010 45 92.27829
## 2458 19UD East Dorset CD 2011 60 93.80185
## 2459 19UD East Dorset CD 2012 65 96.12809
## 2460 19UD East Dorset CD 2013 70 102.18539
## 2461 19UD East Dorset CD 2014 20 93.14720
## 2462 19UD East Dorset CD 2015 55 99.85358
## 2463 19UD East Dorset CD 2016 55 106.19590
## 2464 19UD East Dorset CD 2017 45 108.13269
## 2465 19UE North Dorset CD 2002 40 42.77777
## 2466 19UE North Dorset CD 2003 35 44.56163
## 2467 19UE North Dorset CD 2004 40 45.01404
## 2468 19UE North Dorset CD 2005 35 45.45361
## 2469 19UE North Dorset CD 2006 45 44.51400
## 2470 19UE North Dorset CD 2007 40 48.49553
## 2471 19UE North Dorset CD 2008 60 50.61032
## 2472 19UE North Dorset CD 2009 45 47.81121
## 2473 19UE North Dorset CD 2010 55 51.24118
## 2474 19UE North Dorset CD 2011 35 51.33332
## 2475 19UE North Dorset CD 2012 40 57.29353
## 2476 19UE North Dorset CD 2013 45 59.58332
## 2477 19UE North Dorset CD 2014 30 63.57476
## 2478 19UE North Dorset CD 2015 45 58.33224
## 2479 19UE North Dorset CD 2016 25 60.25970
## 2480 19UE North Dorset CD 2017 40 67.73319
## 2481 19UG Purbeck CD 2002 40 31.84095
## 2482 19UG Purbeck CD 2003 30 34.41551
## 2483 19UG Purbeck CD 2004 45 33.68209
## 2484 19UG Purbeck CD 2005 30 38.53175
## 2485 19UG Purbeck CD 2006 30 37.69906
## 2486 19UG Purbeck CD 2007 25 33.87314
## 2487 19UG Purbeck CD 2008 35 36.93170
## 2488 19UG Purbeck CD 2009 30 38.67353
## 2489 19UG Purbeck CD 2010 25 35.55047
## 2490 19UG Purbeck CD 2011 25 38.62733
## 2491 19UG Purbeck CD 2012 20 36.88379
## 2492 19UG Purbeck CD 2013 35 40.16458
## 2493 19UG Purbeck CD 2014 15 36.52649
## 2494 19UG Purbeck CD 2015 40 41.74249
## 2495 19UG Purbeck CD 2016 15 37.86884
## 2496 19UG Purbeck CD 2017 20 39.64916
## 2497 19UH West Dorset CD 2002 100 79.18407
## 2498 19UH West Dorset CD 2003 75 80.75680
## 2499 19UH West Dorset CD 2004 65 81.00576
## 2500 19UH West Dorset CD 2005 90 85.04786
## 2501 19UH West Dorset CD 2006 95 89.54329
## 2502 19UH West Dorset CD 2007 95 92.04436
## 2503 19UH West Dorset CD 2008 95 91.84118
## 2504 19UH West Dorset CD 2009 100 93.92759
## 2505 19UH West Dorset CD 2010 85 97.23998
## 2506 19UH West Dorset CD 2011 85 102.23927
## 2507 19UH West Dorset CD 2012 75 100.27187
## 2508 19UH West Dorset CD 2013 85 104.17050
## 2509 19UH West Dorset CD 2014 60 104.67320
## 2510 19UH West Dorset CD 2015 95 108.18541
## 2511 19UH West Dorset CD 2016 80 107.37666
## 2512 19UH West Dorset CD 2017 60 112.33665
## 2513 19UJ Weymouth and Portland CD 2002 65 43.17313
## 2514 19UJ Weymouth and Portland CD 2003 55 43.96109
## 2515 19UJ Weymouth and Portland CD 2004 45 47.39084
## 2516 19UJ Weymouth and Portland CD 2005 50 48.43436
## 2517 19UJ Weymouth and Portland CD 2006 40 47.58169
## 2518 19UJ Weymouth and Portland CD 2007 65 48.84759
## 2519 19UJ Weymouth and Portland CD 2008 75 46.44908
## 2520 19UJ Weymouth and Portland CD 2009 55 49.94620
## 2521 19UJ Weymouth and Portland CD 2010 55 46.62854
## 2522 19UJ Weymouth and Portland CD 2011 50 49.80452
## 2523 19UJ Weymouth and Portland CD 2012 45 48.68601
## 2524 19UJ Weymouth and Portland CD 2013 50 52.36528
## 2525 19UJ Weymouth and Portland CD 2014 45 53.81719
## 2526 19UJ Weymouth and Portland CD 2015 40 52.61991
## 2527 19UJ Weymouth and Portland CD 2016 40 53.53451
## 2528 19UJ Weymouth and Portland CD 2017 35 54.68724
## 2529 21UC Eastbourne CD 2002 105 93.35552
## 2530 21UC Eastbourne CD 2003 110 92.21941
## 2531 21UC Eastbourne CD 2004 100 93.25878
## 2532 21UC Eastbourne CD 2005 110 94.27224
## 2533 21UC Eastbourne CD 2006 90 91.90176
## 2534 21UC Eastbourne CD 2007 115 93.01146
## 2535 21UC Eastbourne CD 2008 85 92.10467
## 2536 21UC Eastbourne CD 2009 90 92.61710
## 2537 21UC Eastbourne CD 2010 100 97.21141
## 2538 21UC Eastbourne CD 2011 85 101.40374
## 2539 21UC Eastbourne CD 2012 80 104.89518
## 2540 21UC Eastbourne CD 2013 75 103.71519
## 2541 21UC Eastbourne CD 2014 65 104.85896
## 2542 21UC Eastbourne CD 2015 65 106.16664
## 2543 21UC Eastbourne CD 2016 65 109.76139
## 2544 21UC Eastbourne CD 2017 75 108.33331
## 2545 21UD Hastings CD 2002 120 58.65028
## 2546 21UD Hastings CD 2003 125 58.65953
## 2547 21UD Hastings CD 2004 85 57.92316
## 2548 21UD Hastings CD 2005 90 58.98974
## 2549 21UD Hastings CD 2006 75 57.25607
## 2550 21UD Hastings CD 2007 80 59.86969
## 2551 21UD Hastings CD 2008 55 58.08363
## 2552 21UD Hastings CD 2009 65 56.12852
## 2553 21UD Hastings CD 2010 55 57.27224
## 2554 21UD Hastings CD 2011 65 59.95589
## 2555 21UD Hastings CD 2012 65 60.50547
## 2556 21UD Hastings CD 2013 65 62.19937
## 2557 21UD Hastings CD 2014 50 65.03618
## 2558 21UD Hastings CD 2015 65 63.42500
## 2559 21UD Hastings CD 2016 65 66.46066
## 2560 21UD Hastings CD 2017 70 67.98668
## 2561 21UF Lewes CD 2002 100 78.21184
## 2562 21UF Lewes CD 2003 100 77.12711
## 2563 21UF Lewes CD 2004 75 80.58344
## 2564 21UF Lewes CD 2005 80 83.94128
## 2565 21UF Lewes CD 2006 75 80.70719
## 2566 21UF Lewes CD 2007 75 82.31906
## 2567 21UF Lewes CD 2008 80 84.81124
## 2568 21UF Lewes CD 2009 50 84.13783
## 2569 21UF Lewes CD 2010 65 85.80537
## 2570 21UF Lewes CD 2011 60 88.69618
## 2571 21UF Lewes CD 2012 55 91.98828
## 2572 21UF Lewes CD 2013 65 91.44762
## 2573 21UF Lewes CD 2014 50 100.15721
## 2574 21UF Lewes CD 2015 70 101.20497
## 2575 21UF Lewes CD 2016 50 95.75018
## 2576 21UF Lewes CD 2017 60 103.78176
## 2577 21UG Rother CD 2002 150 97.82667
## 2578 21UG Rother CD 2003 145 96.57476
## 2579 21UG Rother CD 2004 125 95.03850
## 2580 21UG Rother CD 2005 115 96.90978
## 2581 21UG Rother CD 2006 110 97.82584
## 2582 21UG Rother CD 2007 115 98.36484
## 2583 21UG Rother CD 2008 75 98.69012
## 2584 21UG Rother CD 2009 80 101.41291
## 2585 21UG Rother CD 2010 90 104.13307
## 2586 21UG Rother CD 2011 90 111.88323
## 2587 21UG Rother CD 2012 90 108.40221
## 2588 21UG Rother CD 2013 80 107.02814
## 2589 21UG Rother CD 2014 70 115.53171
## 2590 21UG Rother CD 2015 120 114.18248
## 2591 21UG Rother CD 2016 80 110.89216
## 2592 21UG Rother CD 2017 95 114.67095
## 2593 21UH Wealden CD 2002 125 110.26308
## 2594 21UH Wealden CD 2003 155 112.44859
## 2595 21UH Wealden CD 2004 150 110.16138
## 2596 21UH Wealden CD 2005 125 114.38877
## 2597 21UH Wealden CD 2006 140 117.13891
## 2598 21UH Wealden CD 2007 125 120.01573
## 2599 21UH Wealden CD 2008 125 117.51188
## 2600 21UH Wealden CD 2009 120 121.19340
## 2601 21UH Wealden CD 2010 130 125.85973
## 2602 21UH Wealden CD 2011 120 128.81498
## 2603 21UH Wealden CD 2012 105 129.71347
## 2604 21UH Wealden CD 2013 110 134.24537
## 2605 21UH Wealden CD 2014 110 139.86025
## 2606 21UH Wealden CD 2015 110 142.22157
## 2607 21UH Wealden CD 2016 100 142.27408
## 2608 21UH Wealden CD 2017 110 148.78290
## 2609 22UB Basildon CD 2002 90 73.47001
## 2610 22UB Basildon CD 2003 100 75.75133
## 2611 22UB Basildon CD 2004 105 73.68032
## 2612 22UB Basildon CD 2005 115 76.58650
## 2613 22UB Basildon CD 2006 90 78.26619
## 2614 22UB Basildon CD 2007 75 83.47627
## 2615 22UB Basildon CD 2008 105 85.31743
## 2616 22UB Basildon CD 2009 110 88.83419
## 2617 22UB Basildon CD 2010 105 91.03376
## 2618 22UB Basildon CD 2011 90 94.99583
## 2619 22UB Basildon CD 2012 85 97.12897
## 2620 22UB Basildon CD 2013 90 102.77540
## 2621 22UB Basildon CD 2014 70 104.48182
## 2622 22UB Basildon CD 2015 70 100.76834
## 2623 22UB Basildon CD 2016 90 104.09010
## 2624 22UB Basildon CD 2017 80 111.55420
## 2625 22UC Braintree CD 2002 120 69.44211
## 2626 22UC Braintree CD 2003 95 69.98526
## 2627 22UC Braintree CD 2004 60 70.43389
## 2628 22UC Braintree CD 2005 95 74.37596
## 2629 22UC Braintree CD 2006 105 78.25301
## 2630 22UC Braintree CD 2007 80 77.92047
## 2631 22UC Braintree CD 2008 80 81.80370
## 2632 22UC Braintree CD 2009 70 79.75445
## 2633 22UC Braintree CD 2010 80 88.21463
## 2634 22UC Braintree CD 2011 60 88.39779
## 2635 22UC Braintree CD 2012 60 89.18538
## 2636 22UC Braintree CD 2013 65 96.41297
## 2637 22UC Braintree CD 2014 60 100.20734
## 2638 22UC Braintree CD 2015 70 102.27062
## 2639 22UC Braintree CD 2016 60 100.57892
## 2640 22UC Braintree CD 2017 85 106.21397
## 2641 22UD Brentwood CD 2002 60 42.62813
## 2642 22UD Brentwood CD 2003 70 41.71719
## 2643 22UD Brentwood CD 2004 55 43.92602
## 2644 22UD Brentwood CD 2005 50 45.39681
## 2645 22UD Brentwood CD 2006 55 45.26751
## 2646 22UD Brentwood CD 2007 55 47.51093
## 2647 22UD Brentwood CD 2008 65 46.47973
## 2648 22UD Brentwood CD 2009 50 46.92605
## 2649 22UD Brentwood CD 2010 40 53.35616
## 2650 22UD Brentwood CD 2011 50 54.69517
## 2651 22UD Brentwood CD 2012 50 56.99063
## 2652 22UD Brentwood CD 2013 45 55.49853
## 2653 22UD Brentwood CD 2014 55 57.70531
## 2654 22UD Brentwood CD 2015 60 58.64415
## 2655 22UD Brentwood CD 2016 40 65.04524
## 2656 22UD Brentwood CD 2017 45 65.22857
## 2657 22UE Castle Point CD 2002 60 45.77494
## 2658 22UE Castle Point CD 2003 75 47.07317
## 2659 22UE Castle Point CD 2004 65 49.11094
## 2660 22UE Castle Point CD 2005 65 50.12987
## 2661 22UE Castle Point CD 2006 85 50.51481
## 2662 22UE Castle Point CD 2007 55 54.49447
## 2663 22UE Castle Point CD 2008 65 53.69980
## 2664 22UE Castle Point CD 2009 45 54.27574
## 2665 22UE Castle Point CD 2010 50 57.13003
## 2666 22UE Castle Point CD 2011 60 62.32598
## 2667 22UE Castle Point CD 2012 70 65.84199
## 2668 22UE Castle Point CD 2013 55 64.15063
## 2669 22UE Castle Point CD 2014 35 65.65251
## 2670 22UE Castle Point CD 2015 65 66.83614
## 2671 22UE Castle Point CD 2016 60 72.11938
## 2672 22UE Castle Point CD 2017 60 67.95214
## 2673 22UF Chelmsford CD 2002 85 74.94587
## 2674 22UF Chelmsford CD 2003 120 77.60046
## 2675 22UF Chelmsford CD 2004 80 76.47474
## 2676 22UF Chelmsford CD 2005 75 81.46409
## 2677 22UF Chelmsford CD 2006 70 82.95110
## 2678 22UF Chelmsford CD 2007 60 82.95578
## 2679 22UF Chelmsford CD 2008 70 84.50894
## 2680 22UF Chelmsford CD 2009 100 91.18353
## 2681 22UF Chelmsford CD 2010 55 92.24148
## 2682 22UF Chelmsford CD 2011 65 101.42632
## 2683 22UF Chelmsford CD 2012 80 100.79293
## 2684 22UF Chelmsford CD 2013 75 107.92173
## 2685 22UF Chelmsford CD 2014 70 111.12141
## 2686 22UF Chelmsford CD 2015 75 108.34447
## 2687 22UF Chelmsford CD 2016 80 117.39474
## 2688 22UF Chelmsford CD 2017 85 120.31004
## 2689 22UG Colchester CD 2002 85 79.99394
## 2690 22UG Colchester CD 2003 90 80.53507
## 2691 22UG Colchester CD 2004 85 80.51843
## 2692 22UG Colchester CD 2005 90 81.76194
## 2693 22UG Colchester CD 2006 90 87.92330
## 2694 22UG Colchester CD 2007 75 89.66471
## 2695 22UG Colchester CD 2008 95 90.07034
## 2696 22UG Colchester CD 2009 65 93.75358
## 2697 22UG Colchester CD 2010 75 93.78511
## 2698 22UG Colchester CD 2011 85 96.43699
## 2699 22UG Colchester CD 2012 65 99.72737
## 2700 22UG Colchester CD 2013 65 100.59744
## 2701 22UG Colchester CD 2014 65 107.91491
## 2702 22UG Colchester CD 2015 95 106.79686
## 2703 22UG Colchester CD 2016 90 109.28513
## 2704 22UG Colchester CD 2017 80 107.58274
## 2705 22UH Epping Forest CD 2002 60 65.60860
## 2706 22UH Epping Forest CD 2003 110 68.48852
## 2707 22UH Epping Forest CD 2004 65 67.06743
## 2708 22UH Epping Forest CD 2005 60 72.41128
## 2709 22UH Epping Forest CD 2006 55 73.26709
## 2710 22UH Epping Forest CD 2007 75 76.45110
## 2711 22UH Epping Forest CD 2008 85 73.80815
## 2712 22UH Epping Forest CD 2009 75 76.38998
## 2713 22UH Epping Forest CD 2010 60 83.07052
## 2714 22UH Epping Forest CD 2011 55 81.64934
## 2715 22UH Epping Forest CD 2012 55 84.68137
## 2716 22UH Epping Forest CD 2013 55 88.08798
## 2717 22UH Epping Forest CD 2014 100 95.09396
## 2718 22UH Epping Forest CD 2015 70 92.60642
## 2719 22UH Epping Forest CD 2016 75 94.88578
## 2720 22UH Epping Forest CD 2017 85 94.85505
## 2721 22UJ Harlow CD 2002 25 27.56057
## 2722 22UJ Harlow CD 2003 35 31.39336
## 2723 22UJ Harlow CD 2004 25 34.03438
## 2724 22UJ Harlow CD 2005 30 33.31906
## 2725 22UJ Harlow CD 2006 25 38.39872
## 2726 22UJ Harlow CD 2007 30 38.17834
## 2727 22UJ Harlow CD 2008 30 36.38109
## 2728 22UJ Harlow CD 2009 45 41.43156
## 2729 22UJ Harlow CD 2010 35 39.55245
## 2730 22UJ Harlow CD 2011 30 41.55168
## 2731 22UJ Harlow CD 2012 40 45.86107
## 2732 22UJ Harlow CD 2013 35 42.71072
## 2733 22UJ Harlow CD 2014 35 47.96967
## 2734 22UJ Harlow CD 2015 35 46.71332
## 2735 22UJ Harlow CD 2016 45 46.89046
## 2736 22UJ Harlow CD 2017 45 49.38757
## 2737 22UK Maldon CD 2002 35 30.68055
## 2738 22UK Maldon CD 2003 35 34.19478
## 2739 22UK Maldon CD 2004 50 33.12062
## 2740 22UK Maldon CD 2005 40 35.06129
## 2741 22UK Maldon CD 2006 30 38.56356
## 2742 22UK Maldon CD 2007 35 35.47334
## 2743 22UK Maldon CD 2008 40 35.74315
## 2744 22UK Maldon CD 2009 40 38.20610
## 2745 22UK Maldon CD 2010 20 36.82080
## 2746 22UK Maldon CD 2011 40 41.82346
## 2747 22UK Maldon CD 2012 25 44.24169
## 2748 22UK Maldon CD 2013 40 41.98636
## 2749 22UK Maldon CD 2014 20 42.46666
## 2750 22UK Maldon CD 2015 35 48.13443
## 2751 22UK Maldon CD 2016 30 43.88059
## 2752 22UK Maldon CD 2017 40 51.39922
## 2753 22UL Rochford CD 2002 65 41.03937
## 2754 22UL Rochford CD 2003 60 43.48572
## 2755 22UL Rochford CD 2004 35 47.31262
## 2756 22UL Rochford CD 2005 40 49.21941
## 2757 22UL Rochford CD 2006 40 47.69099
## 2758 22UL Rochford CD 2007 45 46.80346
## 2759 22UL Rochford CD 2008 55 52.23787
## 2760 22UL Rochford CD 2009 40 54.44443
## 2761 22UL Rochford CD 2010 55 51.74341
## 2762 22UL Rochford CD 2011 40 52.31543
## 2763 22UL Rochford CD 2012 40 55.10271
## 2764 22UL Rochford CD 2013 50 58.27995
## 2765 22UL Rochford CD 2014 25 58.99140
## 2766 22UL Rochford CD 2015 55 63.31798
## 2767 22UL Rochford CD 2016 55 65.58627
## 2768 22UL Rochford CD 2017 45 64.08840
## 2769 22UN Tendring CD 2002 155 130.49198
## 2770 22UN Tendring CD 2003 155 132.79755
## 2771 22UN Tendring CD 2004 150 135.80331
## 2772 22UN Tendring CD 2005 180 135.40820
## 2773 22UN Tendring CD 2006 130 136.90686
## 2774 22UN Tendring CD 2007 125 140.45458
## 2775 22UN Tendring CD 2008 140 138.33177
## 2776 22UN Tendring CD 2009 125 140.82720
## 2777 22UN Tendring CD 2010 110 140.16545
## 2778 22UN Tendring CD 2011 100 136.45566
## 2779 22UN Tendring CD 2012 80 138.22213
## 2780 22UN Tendring CD 2013 115 142.10472
## 2781 22UN Tendring CD 2014 95 147.25469
## 2782 22UN Tendring CD 2015 105 147.85668
## 2783 22UN Tendring CD 2016 120 146.71782
## 2784 22UN Tendring CD 2017 155 147.64610
## 2785 22UQ Uttlesford CD 2002 55 38.18906
## 2786 22UQ Uttlesford CD 2003 40 38.48677
## 2787 22UQ Uttlesford CD 2004 35 38.88765
## 2788 22UQ Uttlesford CD 2005 60 42.95917
## 2789 22UQ Uttlesford CD 2006 55 40.76853
## 2790 22UQ Uttlesford CD 2007 60 44.21749
## 2791 22UQ Uttlesford CD 2008 45 44.92626
## 2792 22UQ Uttlesford CD 2009 45 46.72371
## 2793 22UQ Uttlesford CD 2010 30 46.38348
## 2794 22UQ Uttlesford CD 2011 45 50.99295
## 2795 22UQ Uttlesford CD 2012 35 49.70510
## 2796 22UQ Uttlesford CD 2013 30 50.42820
## 2797 22UQ Uttlesford CD 2014 25 54.11645
## 2798 22UQ Uttlesford CD 2015 40 57.19415
## 2799 22UQ Uttlesford CD 2016 45 58.89884
## 2800 22UQ Uttlesford CD 2017 45 64.08840
## 2801 23UB Cheltenham CD 2002 75 66.71637
## 2802 23UB Cheltenham CD 2003 90 68.81600
## 2803 23UB Cheltenham CD 2004 80 68.50716
## 2804 23UB Cheltenham CD 2005 70 69.37622
## 2805 23UB Cheltenham CD 2006 90 74.59103
## 2806 23UB Cheltenham CD 2007 85 75.04976
## 2807 23UB Cheltenham CD 2008 90 74.48531
## 2808 23UB Cheltenham CD 2009 65 72.98372
## 2809 23UB Cheltenham CD 2010 75 78.80115
## 2810 23UB Cheltenham CD 2011 70 80.89220
## 2811 23UB Cheltenham CD 2012 90 79.13042
## 2812 23UB Cheltenham CD 2013 85 81.70586
## 2813 23UB Cheltenham CD 2014 80 85.35361
## 2814 23UB Cheltenham CD 2015 80 86.48613
## 2815 23UB Cheltenham CD 2016 75 87.96131
## 2816 23UB Cheltenham CD 2017 70 91.52638
## 2817 23UC Cotswold CD 2002 65 55.38792
## 2818 23UC Cotswold CD 2003 60 54.46206
## 2819 23UC Cotswold CD 2004 70 57.64705
## 2820 23UC Cotswold CD 2005 70 56.41706
## 2821 23UC Cotswold CD 2006 60 58.38760
## 2822 23UC Cotswold CD 2007 55 61.19649
## 2823 23UC Cotswold CD 2008 50 63.26861
## 2824 23UC Cotswold CD 2009 65 65.42482
## 2825 23UC Cotswold CD 2010 50 68.49461
## 2826 23UC Cotswold CD 2011 65 70.81628
## 2827 23UC Cotswold CD 2012 55 71.44696
## 2828 23UC Cotswold CD 2013 60 72.21228
## 2829 23UC Cotswold CD 2014 60 71.90352
## 2830 23UC Cotswold CD 2015 60 73.11015
## 2831 23UC Cotswold CD 2016 60 75.01470
## 2832 23UC Cotswold CD 2017 60 79.64006
## 2833 23UD Forest of Dean CD 2002 60 43.03612
## 2834 23UD Forest of Dean CD 2003 70 46.09867
## 2835 23UD Forest of Dean CD 2004 55 45.93384
## 2836 23UD Forest of Dean CD 2005 60 48.94864
## 2837 23UD Forest of Dean CD 2006 60 51.56944
## 2838 23UD Forest of Dean CD 2007 60 50.13354
## 2839 23UD Forest of Dean CD 2008 60 50.61946
## 2840 23UD Forest of Dean CD 2009 50 53.43958
## 2841 23UD Forest of Dean CD 2010 50 58.05301
## 2842 23UD Forest of Dean CD 2011 45 57.34563
## 2843 23UD Forest of Dean CD 2012 65 60.88562
## 2844 23UD Forest of Dean CD 2013 55 62.21405
## 2845 23UD Forest of Dean CD 2014 35 61.29591
## 2846 23UD Forest of Dean CD 2015 60 65.19654
## 2847 23UD Forest of Dean CD 2016 55 67.18119
## 2848 23UD Forest of Dean CD 2017 70 64.76396
## 2849 23UE Gloucester CD 2002 80 52.32764
## 2850 23UE Gloucester CD 2003 75 54.20856
## 2851 23UE Gloucester CD 2004 75 56.28412
## 2852 23UE Gloucester CD 2005 75 57.50669
## 2853 23UE Gloucester CD 2006 85 55.59812
## 2854 23UE Gloucester CD 2007 100 59.22575
## 2855 23UE Gloucester CD 2008 75 56.65426
## 2856 23UE Gloucester CD 2009 85 58.69375
## 2857 23UE Gloucester CD 2010 80 62.26368
## 2858 23UE Gloucester CD 2011 60 62.01798
## 2859 23UE Gloucester CD 2012 65 67.70550
## 2860 23UE Gloucester CD 2013 75 70.52132
## 2861 23UE Gloucester CD 2014 70 68.50896
## 2862 23UE Gloucester CD 2015 60 69.77345
## 2863 23UE Gloucester CD 2016 60 75.81280
## 2864 23UE Gloucester CD 2017 55 72.35916
## 2865 23UF Stroud CD 2002 95 68.74927
## 2866 23UF Stroud CD 2003 80 68.90294
## 2867 23UF Stroud CD 2004 70 69.13177
## 2868 23UF Stroud CD 2005 75 71.33015
## 2869 23UF Stroud CD 2006 95 71.76979
## 2870 23UF Stroud CD 2007 85 73.66209
## 2871 23UF Stroud CD 2008 70 71.55213
## 2872 23UF Stroud CD 2009 85 72.18894
## 2873 23UF Stroud CD 2010 70 74.76410
## 2874 23UF Stroud CD 2011 60 75.49967
## 2875 23UF Stroud CD 2012 75 78.59491
## 2876 23UF Stroud CD 2013 90 81.56103
## 2877 23UF Stroud CD 2014 70 82.04230
## 2878 23UF Stroud CD 2015 95 84.72791
## 2879 23UF Stroud CD 2016 80 85.63395
## 2880 23UF Stroud CD 2017 65 80.61862
## 2881 23UG Tewkesbury CD 2002 70 45.99924
## 2882 23UG Tewkesbury CD 2003 45 45.55587
## 2883 23UG Tewkesbury CD 2004 50 50.86012
## 2884 23UG Tewkesbury CD 2005 60 51.28323
## 2885 23UG Tewkesbury CD 2006 55 51.04098
## 2886 23UG Tewkesbury CD 2007 75 51.29074
## 2887 23UG Tewkesbury CD 2008 65 53.77906
## 2888 23UG Tewkesbury CD 2009 60 54.76357
## 2889 23UG Tewkesbury CD 2010 65 56.85369
## 2890 23UG Tewkesbury CD 2011 65 57.22874
## 2891 23UG Tewkesbury CD 2012 60 61.67680
## 2892 23UG Tewkesbury CD 2013 70 62.13058
## 2893 23UG Tewkesbury CD 2014 45 63.46280
## 2894 23UG Tewkesbury CD 2015 55 63.57389
## 2895 23UG Tewkesbury CD 2016 50 71.47810
## 2896 23UG Tewkesbury CD 2017 45 70.70634
## 2897 24UB Basingstoke and Deane CD 2002 85 60.24325
## 2898 24UB Basingstoke and Deane CD 2003 90 61.44693
## 2899 24UB Basingstoke and Deane CD 2004 75 60.73677
## 2900 24UB Basingstoke and Deane CD 2005 100 63.54978
## 2901 24UB Basingstoke and Deane CD 2006 80 65.37522
## 2902 24UB Basingstoke and Deane CD 2007 80 67.88494
## 2903 24UB Basingstoke and Deane CD 2008 100 69.69710
## 2904 24UB Basingstoke and Deane CD 2009 55 69.94281
## 2905 24UB Basingstoke and Deane CD 2010 80 74.42871
## 2906 24UB Basingstoke and Deane CD 2011 85 80.73673
## 2907 24UB Basingstoke and Deane CD 2012 55 80.73424
## 2908 24UB Basingstoke and Deane CD 2013 75 86.52752
## 2909 24UB Basingstoke and Deane CD 2014 75 88.24935
## 2910 24UB Basingstoke and Deane CD 2015 90 91.58810
## 2911 24UB Basingstoke and Deane CD 2016 60 94.18009
## 2912 24UB Basingstoke and Deane CD 2017 65 100.67526
## 2913 24UC East Hampshire CD 2002 90 63.94867
## 2914 24UC East Hampshire CD 2003 80 65.34093
## 2915 24UC East Hampshire CD 2004 60 65.31302
## 2916 24UC East Hampshire CD 2005 85 68.24347
## 2917 24UC East Hampshire CD 2006 75 69.82791
## 2918 24UC East Hampshire CD 2007 65 68.48431
## 2919 24UC East Hampshire CD 2008 80 69.42348
## 2920 24UC East Hampshire CD 2009 50 71.23105
## 2921 24UC East Hampshire CD 2010 85 78.47100
## 2922 24UC East Hampshire CD 2011 65 80.32006
## 2923 24UC East Hampshire CD 2012 95 82.40976
## 2924 24UC East Hampshire CD 2013 75 87.31825
## 2925 24UC East Hampshire CD 2014 55 91.97730
## 2926 24UC East Hampshire CD 2015 80 95.30900
## 2927 24UC East Hampshire CD 2016 55 97.68946
## 2928 24UC East Hampshire CD 2017 50 95.73710
## 2929 24UD Eastleigh CD 2002 65 58.46661
## 2930 24UD Eastleigh CD 2003 90 58.98423
## 2931 24UD Eastleigh CD 2004 70 59.05959
## 2932 24UD Eastleigh CD 2005 70 60.75683
## 2933 24UD Eastleigh CD 2006 65 63.82048
## 2934 24UD Eastleigh CD 2007 55 60.57606
## 2935 24UD Eastleigh CD 2008 45 61.22620
## 2936 24UD Eastleigh CD 2009 45 63.69998
## 2937 24UD Eastleigh CD 2010 55 72.39315
## 2938 24UD Eastleigh CD 2011 35 73.26212
## 2939 24UD Eastleigh CD 2012 50 75.81690
## 2940 24UD Eastleigh CD 2013 60 74.87443
## 2941 24UD Eastleigh CD 2014 55 78.65801
## 2942 24UD Eastleigh CD 2015 60 82.24176
## 2943 24UD Eastleigh CD 2016 50 83.56587
## 2944 24UD Eastleigh CD 2017 45 92.10309
## 2945 24UE Fareham CD 2002 100 62.68842
## 2946 24UE Fareham CD 2003 110 64.09195
## 2947 24UE Fareham CD 2004 80 66.09207
## 2948 24UE Fareham CD 2005 75 64.85960
## 2949 24UE Fareham CD 2006 65 68.80503
## 2950 24UE Fareham CD 2007 60 70.10504
## 2951 24UE Fareham CD 2008 75 75.82237
## 2952 24UE Fareham CD 2009 60 73.04663
## 2953 24UE Fareham CD 2010 45 80.30432
## 2954 24UE Fareham CD 2011 65 77.87551
## 2955 24UE Fareham CD 2012 50 83.68564
## 2956 24UE Fareham CD 2013 55 88.63498
## 2957 24UE Fareham CD 2014 45 83.86035
## 2958 24UE Fareham CD 2015 45 94.40567
## 2959 24UE Fareham CD 2016 55 95.47502
## 2960 24UE Fareham CD 2017 40 95.31710
## 2961 24UF Gosport CD 2002 55 40.01505
## 2962 24UF Gosport CD 2003 45 40.26239
## 2963 24UF Gosport CD 2004 45 43.64825
## 2964 24UF Gosport CD 2005 60 41.97693
## 2965 24UF Gosport CD 2006 50 45.87233
## 2966 24UF Gosport CD 2007 50 46.26914
## 2967 24UF Gosport CD 2008 40 45.71148
## 2968 24UF Gosport CD 2009 50 48.56528
## 2969 24UF Gosport CD 2010 55 46.85246
## 2970 24UF Gosport CD 2011 35 49.35996
## 2971 24UF Gosport CD 2012 35 53.21001
## 2972 24UF Gosport CD 2013 50 56.21338
## 2973 24UF Gosport CD 2014 30 59.08093
## 2974 24UF Gosport CD 2015 40 55.74382
## 2975 24UF Gosport CD 2016 40 58.62984
## 2976 24UF Gosport CD 2017 25 56.35353
## 2977 24UG Hart CD 2002 50 35.90387
## 2978 24UG Hart CD 2003 55 37.10976
## 2979 24UG Hart CD 2004 35 38.01952
## 2980 24UG Hart CD 2005 35 35.92017
## 2981 24UG Hart CD 2006 30 37.62820
## 2982 24UG Hart CD 2007 40 41.22067
## 2983 24UG Hart CD 2008 40 44.22563
## 2984 24UG Hart CD 2009 45 44.67166
## 2985 24UG Hart CD 2010 35 44.65088
## 2986 24UG Hart CD 2011 30 49.24103
## 2987 24UG Hart CD 2012 35 51.13531
## 2988 24UG Hart CD 2013 35 53.60545
## 2989 24UG Hart CD 2014 40 55.04319
## 2990 24UG Hart CD 2015 35 56.24239
## 2991 24UG Hart CD 2016 55 60.80544
## 2992 24UG Hart CD 2017 40 63.46200
## 2993 24UH Havant CD 2002 100 69.62439
## 2994 24UH Havant CD 2003 100 70.51067
## 2995 24UH Havant CD 2004 75 73.26941
## 2996 24UH Havant CD 2005 80 75.81793
## 2997 24UH Havant CD 2006 75 75.14476
## 2998 24UH Havant CD 2007 85 80.54021
## 2999 24UH Havant CD 2008 75 80.35549
## 3000 24UH Havant CD 2009 75 83.69563
## 3001 24UH Havant CD 2010 60 86.64878
## 3002 24UH Havant CD 2011 60 89.29904
## 3003 24UH Havant CD 2012 55 95.39230
## 3004 24UH Havant CD 2013 70 95.10226
## 3005 24UH Havant CD 2014 55 101.15089
## 3006 24UH Havant CD 2015 75 103.15534
## 3007 24UH Havant CD 2016 55 104.24260
## 3008 24UH Havant CD 2017 45 102.70844
## 3009 24UJ New Forest CD 2002 135 135.97021
## 3010 24UJ New Forest CD 2003 175 137.35365
## 3011 24UJ New Forest CD 2004 145 141.56538
## 3012 24UJ New Forest CD 2005 160 148.82779
## 3013 24UJ New Forest CD 2006 120 153.35397
## 3014 24UJ New Forest CD 2007 130 160.32910
## 3015 24UJ New Forest CD 2008 145 161.04212
## 3016 24UJ New Forest CD 2009 95 160.32390
## 3017 24UJ New Forest CD 2010 125 173.52646
## 3018 24UJ New Forest CD 2011 120 176.79558
## 3019 24UJ New Forest CD 2012 100 179.16130
## 3020 24UJ New Forest CD 2013 95 188.04092
## 3021 24UJ New Forest CD 2014 85 194.76614
## 3022 24UJ New Forest CD 2015 95 196.91313
## 3023 24UJ New Forest CD 2016 85 197.08632
## 3024 24UJ New Forest CD 2017 105 205.08288
## 3025 24UL Rushmoor CD 2002 65 35.09303
## 3026 24UL Rushmoor CD 2003 65 34.57226
## 3027 24UL Rushmoor CD 2004 40 36.78939
## 3028 24UL Rushmoor CD 2005 55 36.95674
## 3029 24UL Rushmoor CD 2006 35 37.98125
## 3030 24UL Rushmoor CD 2007 45 40.04508
## 3031 24UL Rushmoor CD 2008 45 39.25489
## 3032 24UL Rushmoor CD 2009 50 37.96596
## 3033 24UL Rushmoor CD 2010 55 42.11167
## 3034 24UL Rushmoor CD 2011 35 39.40944
## 3035 24UL Rushmoor CD 2012 45 42.76326
## 3036 24UL Rushmoor CD 2013 35 42.86000
## 3037 24UL Rushmoor CD 2014 45 46.77222
## 3038 24UL Rushmoor CD 2015 45 44.29514
## 3039 24UL Rushmoor CD 2016 35 47.05390
## 3040 24UL Rushmoor CD 2017 25 44.52846
## 3041 24UN Test Valley CD 2002 65 59.13463
## 3042 24UN Test Valley CD 2003 80 60.23316
## 3043 24UN Test Valley CD 2004 65 58.76079
## 3044 24UN Test Valley CD 2005 65 61.56460
## 3045 24UN Test Valley CD 2006 70 65.81107
## 3046 24UN Test Valley CD 2007 50 63.66526
## 3047 24UN Test Valley CD 2008 50 63.56131
## 3048 24UN Test Valley CD 2009 70 69.89027
## 3049 24UN Test Valley CD 2010 55 72.40675
## 3050 24UN Test Valley CD 2011 55 74.18381
## 3051 24UN Test Valley CD 2012 50 81.54310
## 3052 24UN Test Valley CD 2013 55 81.50257
## 3053 24UN Test Valley CD 2014 45 80.94338
## 3054 24UN Test Valley CD 2015 65 82.30121
## 3055 24UN Test Valley CD 2016 50 87.43447
## 3056 24UN Test Valley CD 2017 40 88.12449
## 3057 24UP Winchester CD 2002 75 67.65689
## 3058 24UP Winchester CD 2003 110 67.73021
## 3059 24UP Winchester CD 2004 55 67.55213
## 3060 24UP Winchester CD 2005 60 73.02126
## 3061 24UP Winchester CD 2006 70 72.71364
## 3062 24UP Winchester CD 2007 90 74.64400
## 3063 24UP Winchester CD 2008 55 73.09339
## 3064 24UP Winchester CD 2009 60 77.36840
## 3065 24UP Winchester CD 2010 60 78.31236
## 3066 24UP Winchester CD 2011 60 81.61116
## 3067 24UP Winchester CD 2012 65 85.35511
## 3068 24UP Winchester CD 2013 75 90.54529
## 3069 24UP Winchester CD 2014 65 90.03754
## 3070 24UP Winchester CD 2015 65 90.22482
## 3071 24UP Winchester CD 2016 60 98.65538
## 3072 24UP Winchester CD 2017 55 101.95368
## 3073 26UB Broxbourne CD 2002 60 36.64269
## 3074 26UB Broxbourne CD 2003 75 38.31194
## 3075 26UB Broxbourne CD 2004 60 39.42053
## 3076 26UB Broxbourne CD 2005 60 38.99276
## 3077 26UB Broxbourne CD 2006 25 38.95807
## 3078 26UB Broxbourne CD 2007 50 41.83782
## 3079 26UB Broxbourne CD 2008 60 44.43011
## 3080 26UB Broxbourne CD 2009 50 46.90093
## 3081 26UB Broxbourne CD 2010 35 45.43256
## 3082 26UB Broxbourne CD 2011 40 52.72384
## 3083 26UB Broxbourne CD 2012 40 54.63014
## 3084 26UB Broxbourne CD 2013 45 50.39395
## 3085 26UB Broxbourne CD 2014 35 54.00681
## 3086 26UB Broxbourne CD 2015 50 59.01127
## 3087 26UB Broxbourne CD 2016 50 59.24077
## 3088 26UB Broxbourne CD 2017 40 60.02354
## 3089 26UC Dacorum CD 2002 105 65.53263
## 3090 26UC Dacorum CD 2003 90 66.87840
## 3091 26UC Dacorum CD 2004 80 69.01322
## 3092 26UC Dacorum CD 2005 85 70.56393
## 3093 26UC Dacorum CD 2006 95 72.79401
## 3094 26UC Dacorum CD 2007 60 77.57540
## 3095 26UC Dacorum CD 2008 65 74.41465
## 3096 26UC Dacorum CD 2009 65 76.06127
## 3097 26UC Dacorum CD 2010 90 83.84920
## 3098 26UC Dacorum CD 2011 70 85.49588
## 3099 26UC Dacorum CD 2012 90 90.06425
## 3100 26UC Dacorum CD 2013 75 90.62336
## 3101 26UC Dacorum CD 2014 75 91.85892
## 3102 26UC Dacorum CD 2015 70 96.75311
## 3103 26UC Dacorum CD 2016 85 98.74739
## 3104 26UC Dacorum CD 2017 85 97.79080
## 3105 26UD East Hertfordshire CD 2002 105 57.80897
## 3106 26UD East Hertfordshire CD 2003 85 60.27373
## 3107 26UD East Hertfordshire CD 2004 70 60.95692
## 3108 26UD East Hertfordshire CD 2005 85 64.37819
## 3109 26UD East Hertfordshire CD 2006 70 66.01035
## 3110 26UD East Hertfordshire CD 2007 75 66.40446
## 3111 26UD East Hertfordshire CD 2008 60 67.56990
## 3112 26UD East Hertfordshire CD 2009 60 67.47230
## 3113 26UD East Hertfordshire CD 2010 65 74.35998
## 3114 26UD East Hertfordshire CD 2011 70 74.98699
## 3115 26UD East Hertfordshire CD 2012 65 78.83934
## 3116 26UD East Hertfordshire CD 2013 70 80.84554
## 3117 26UD East Hertfordshire CD 2014 70 83.29624
## 3118 26UD East Hertfordshire CD 2015 65 85.01258
## 3119 26UD East Hertfordshire CD 2016 65 91.65927
## 3120 26UD East Hertfordshire CD 2017 70 92.16270
## 3121 26UE Hertsmere CD 2002 110 55.86503
## 3122 26UE Hertsmere CD 2003 100 54.46559
## 3123 26UE Hertsmere CD 2004 90 55.00239
## 3124 26UE Hertsmere CD 2005 130 56.88919
## 3125 26UE Hertsmere CD 2006 90 59.51865
## 3126 26UE Hertsmere CD 2007 90 60.02854
## 3127 26UE Hertsmere CD 2008 80 62.02942
## 3128 26UE Hertsmere CD 2009 95 61.02258
## 3129 26UE Hertsmere CD 2010 65 60.56178
## 3130 26UE Hertsmere CD 2011 65 64.68152
## 3131 26UE Hertsmere CD 2012 65 66.63568
## 3132 26UE Hertsmere CD 2013 55 69.53896
## 3133 26UE Hertsmere CD 2014 75 71.49026
## 3134 26UE Hertsmere CD 2015 75 72.51119
## 3135 26UE Hertsmere CD 2016 60 71.83595
## 3136 26UE Hertsmere CD 2017 60 74.62854
## 3137 26UF North Hertfordshire CD 2002 95 66.78018
## 3138 26UF North Hertfordshire CD 2003 110 67.78680
## 3139 26UF North Hertfordshire CD 2004 115 71.03357
## 3140 26UF North Hertfordshire CD 2005 90 71.49998
## 3141 26UF North Hertfordshire CD 2006 110 72.67300
## 3142 26UF North Hertfordshire CD 2007 80 75.41502
## 3143 26UF North Hertfordshire CD 2008 110 76.33652
## 3144 26UF North Hertfordshire CD 2009 90 77.38264
## 3145 26UF North Hertfordshire CD 2010 75 80.44158
## 3146 26UF North Hertfordshire CD 2011 95 84.65249
## 3147 26UF North Hertfordshire CD 2012 85 83.10239
## 3148 26UF North Hertfordshire CD 2013 75 87.43447
## 3149 26UF North Hertfordshire CD 2014 85 89.53621
## 3150 26UF North Hertfordshire CD 2015 90 89.91016
## 3151 26UF North Hertfordshire CD 2016 75 89.79494
## 3152 26UF North Hertfordshire CD 2017 75 93.82697
## 3153 26UG St Albans CD 2002 105 63.46371
## 3154 26UG St Albans CD 2003 125 63.46459
## 3155 26UG St Albans CD 2004 65 62.55819
## 3156 26UG St Albans CD 2005 80 67.13292
## 3157 26UG St Albans CD 2006 90 66.20091
## 3158 26UG St Albans CD 2007 65 68.46887
## 3159 26UG St Albans CD 2008 75 73.05552
## 3160 26UG St Albans CD 2009 75 73.41271
## 3161 26UG St Albans CD 2010 65 79.99559
## 3162 26UG St Albans CD 2011 70 83.66565
## 3163 26UG St Albans CD 2012 70 87.15946
## 3164 26UG St Albans CD 2013 65 84.68853
## 3165 26UG St Albans CD 2014 70 88.24935
## 3166 26UG St Albans CD 2015 75 88.98906
## 3167 26UG St Albans CD 2016 75 96.95137
## 3168 26UG St Albans CD 2017 85 96.18780
## 3169 26UH Stevenage CD 2002 40 31.35648
## 3170 26UH Stevenage CD 2003 50 31.89639
## 3171 26UH Stevenage CD 2004 35 32.15695
## 3172 26UH Stevenage CD 2005 35 35.81525
## 3173 26UH Stevenage CD 2006 35 34.20670
## 3174 26UH Stevenage CD 2007 45 36.46313
## 3175 26UH Stevenage CD 2008 50 34.28920
## 3176 26UH Stevenage CD 2009 35 35.43490
## 3177 26UH Stevenage CD 2010 30 40.53412
## 3178 26UH Stevenage CD 2011 55 40.39039
## 3179 26UH Stevenage CD 2012 55 44.58667
## 3180 26UH Stevenage CD 2013 40 47.67882
## 3181 26UH Stevenage CD 2014 35 45.03626
## 3182 26UH Stevenage CD 2015 50 48.18787
## 3183 26UH Stevenage CD 2016 50 49.88608
## 3184 26UH Stevenage CD 2017 35 46.85612
## 3185 26UJ Three Rivers CD 2002 85 47.34835
## 3186 26UJ Three Rivers CD 2003 90 48.69917
## 3187 26UJ Three Rivers CD 2004 65 52.57777
## 3188 26UJ Three Rivers CD 2005 65 49.48714
## 3189 26UJ Three Rivers CD 2006 65 51.21211
## 3190 26UJ Three Rivers CD 2007 50 52.35354
## 3191 26UJ Three Rivers CD 2008 80 51.67641
## 3192 26UJ Three Rivers CD 2009 60 53.14707
## 3193 26UJ Three Rivers CD 2010 70 56.35224
## 3194 26UJ Three Rivers CD 2011 55 58.73875
## 3195 26UJ Three Rivers CD 2012 65 55.60091
## 3196 26UJ Three Rivers CD 2013 55 57.14062
## 3197 26UJ Three Rivers CD 2014 65 61.55212
## 3198 26UJ Three Rivers CD 2015 45 60.13444
## 3199 26UJ Three Rivers CD 2016 55 65.87776
## 3200 26UJ Three Rivers CD 2017 60 63.22104
## 3201 26UK Watford CD 2002 75 36.25685
## 3202 26UK Watford CD 2003 90 35.20024
## 3203 26UK Watford CD 2004 70 34.75817
## 3204 26UK Watford CD 2005 70 37.19214
## 3205 26UK Watford CD 2006 60 36.67945
## 3206 26UK Watford CD 2007 70 38.25825
## 3207 26UK Watford CD 2008 50 39.16274
## 3208 26UK Watford CD 2009 45 38.23621
## 3209 26UK Watford CD 2010 50 39.35632
## 3210 26UK Watford CD 2011 50 41.40763
## 3211 26UK Watford CD 2012 50 41.33191
## 3212 26UK Watford CD 2013 40 44.00344
## 3213 26UK Watford CD 2014 40 48.47037
## 3214 26UK Watford CD 2015 60 45.83982
## 3215 26UK Watford CD 2016 50 48.48798
## 3216 26UK Watford CD 2017 50 45.76447
## 3217 26UL Welwyn Hatfield CD 2002 120 54.08547
## 3218 26UL Welwyn Hatfield CD 2003 85 55.89816
## 3219 26UL Welwyn Hatfield CD 2004 90 55.34025
## 3220 26UL Welwyn Hatfield CD 2005 80 57.13003
## 3221 26UL Welwyn Hatfield CD 2006 70 58.92478
## 3222 26UL Welwyn Hatfield CD 2007 55 57.86560
## 3223 26UL Welwyn Hatfield CD 2008 70 58.20802
## 3224 26UL Welwyn Hatfield CD 2009 55 60.96416
## 3225 26UL Welwyn Hatfield CD 2010 65 64.40256
## 3226 26UL Welwyn Hatfield CD 2011 60 66.58008
## 3227 26UL Welwyn Hatfield CD 2012 50 70.45042
## 3228 26UL Welwyn Hatfield CD 2013 65 71.44390
## 3229 26UL Welwyn Hatfield CD 2014 65 75.64439
## 3230 26UL Welwyn Hatfield CD 2015 55 75.33670
## 3231 26UL Welwyn Hatfield CD 2016 60 78.56113
## 3232 26UL Welwyn Hatfield CD 2017 55 78.24280
## 3233 29UB Ashford CD 2002 80 53.86891
## 3234 29UB Ashford CD 2003 100 56.78741
## 3235 29UB Ashford CD 2004 75 57.19687
## 3236 29UB Ashford CD 2005 105 59.23791
## 3237 29UB Ashford CD 2006 80 62.82895
## 3238 29UB Ashford CD 2007 65 66.13735
## 3239 29UB Ashford CD 2008 45 61.89320
## 3240 29UB Ashford CD 2009 50 67.66778
## 3241 29UB Ashford CD 2010 90 68.59519
## 3242 29UB Ashford CD 2011 65 68.89349
## 3243 29UB Ashford CD 2012 75 73.28474
## 3244 29UB Ashford CD 2013 65 73.57320
## 3245 29UB Ashford CD 2014 65 79.03087
## 3246 29UB Ashford CD 2015 65 81.33849
## 3247 29UB Ashford CD 2016 65 80.27759
## 3248 29UB Ashford CD 2017 65 81.04180
## 3249 29UC Canterbury CD 2002 120 94.91362
## 3250 29UC Canterbury CD 2003 145 95.23055
## 3251 29UC Canterbury CD 2004 140 97.03544
## 3252 29UC Canterbury CD 2005 140 97.75096
## 3253 29UC Canterbury CD 2006 105 98.20928
## 3254 29UC Canterbury CD 2007 125 103.28712
## 3255 29UC Canterbury CD 2008 105 101.35485
## 3256 29UC Canterbury CD 2009 100 105.02096
## 3257 29UC Canterbury CD 2010 95 108.08002
## 3258 29UC Canterbury CD 2011 85 108.83414
## 3259 29UC Canterbury CD 2012 95 114.58212
## 3260 29UC Canterbury CD 2013 80 117.08822
## 3261 29UC Canterbury CD 2014 90 121.54377
## 3262 29UC Canterbury CD 2015 110 120.89559
## 3263 29UC Canterbury CD 2016 110 119.38814
## 3264 29UC Canterbury CD 2017 85 124.87574
## 3265 29UD Dartford CD 2002 70 37.96949
## 3266 29UD Dartford CD 2003 75 40.19311
## 3267 29UD Dartford CD 2004 55 41.16261
## 3268 29UD Dartford CD 2005 65 39.52572
## 3269 29UD Dartford CD 2006 45 42.00279
## 3270 29UD Dartford CD 2007 55 42.95418
## 3271 29UD Dartford CD 2008 45 44.76680
## 3272 29UD Dartford CD 2009 55 46.98956
## 3273 29UD Dartford CD 2010 40 45.87233
## 3274 29UD Dartford CD 2011 50 51.43129
## 3275 29UD Dartford CD 2012 30 51.27697
## 3276 29UD Dartford CD 2013 40 49.69062
## 3277 29UD Dartford CD 2014 35 51.76128
## 3278 29UD Dartford CD 2015 45 58.44577
## 3279 29UD Dartford CD 2016 40 55.88832
## 3280 29UD Dartford CD 2017 45 59.78101
## 3281 29UE Dover CD 2002 120 68.30543
## 3282 29UE Dover CD 2003 120 68.62598
## 3283 29UE Dover CD 2004 85 69.99587
## 3284 29UE Dover CD 2005 110 69.41683
## 3285 29UE Dover CD 2006 90 72.85465
## 3286 29UE Dover CD 2007 95 72.12361
## 3287 29UE Dover CD 2008 95 75.09333
## 3288 29UE Dover CD 2009 80 77.18021
## 3289 29UE Dover CD 2010 95 77.46594
## 3290 29UE Dover CD 2011 105 80.28972
## 3291 29UE Dover CD 2012 60 81.31127
## 3292 29UE Dover CD 2013 100 86.31434
## 3293 29UE Dover CD 2014 70 89.24488
## 3294 29UE Dover CD 2015 85 86.93546
## 3295 29UE Dover CD 2016 80 89.59640
## 3296 29UE Dover CD 2017 70 93.00149
## 3297 29UG Gravesham CD 2002 60 46.38860
## 3298 29UG Gravesham CD 2003 65 43.69081
## 3299 29UG Gravesham CD 2004 55 44.43758
## 3300 29UG Gravesham CD 2005 60 45.84732
## 3301 29UG Gravesham CD 2006 55 50.06950
## 3302 29UG Gravesham CD 2007 55 48.56773
## 3303 29UG Gravesham CD 2008 45 48.15439
## 3304 29UG Gravesham CD 2009 50 52.71194
## 3305 29UG Gravesham CD 2010 55 52.55846
## 3306 29UG Gravesham CD 2011 45 54.72792
## 3307 29UG Gravesham CD 2012 40 61.33711
## 3308 29UG Gravesham CD 2013 50 57.36858
## 3309 29UG Gravesham CD 2014 40 57.81948
## 3310 29UG Gravesham CD 2015 45 61.18462
## 3311 29UG Gravesham CD 2016 35 58.20457
## 3312 29UG Gravesham CD 2017 50 64.60445
## 3313 29UH Maidstone CD 2002 105 71.92285
## 3314 29UH Maidstone CD 2003 105 73.09471
## 3315 29UH Maidstone CD 2004 100 75.62869
## 3316 29UH Maidstone CD 2005 85 76.91049
## 3317 29UH Maidstone CD 2006 95 75.94146
## 3318 29UH Maidstone CD 2007 90 76.81708
## 3319 29UH Maidstone CD 2008 95 82.46591
## 3320 29UH Maidstone CD 2009 90 85.62523
## 3321 29UH Maidstone CD 2010 80 87.05022
## 3322 29UH Maidstone CD 2011 100 93.32088
## 3323 29UH Maidstone CD 2012 90 95.18941
## 3324 29UH Maidstone CD 2013 100 97.11036
## 3325 29UH Maidstone CD 2014 70 101.96235
## 3326 29UH Maidstone CD 2015 95 104.18921
## 3327 29UH Maidstone CD 2016 80 106.83436
## 3328 29UH Maidstone CD 2017 85 106.60370
## 3329 29UK Sevenoaks CD 2002 80 65.95986
## 3330 29UK Sevenoaks CD 2003 85 63.37464
## 3331 29UK Sevenoaks CD 2004 60 66.27048
## 3332 29UK Sevenoaks CD 2005 65 68.00879
## 3333 29UK Sevenoaks CD 2006 70 71.44791
## 3334 29UK Sevenoaks CD 2007 70 69.04418
## 3335 29UK Sevenoaks CD 2008 75 69.24368
## 3336 29UK Sevenoaks CD 2009 60 71.45745
## 3337 29UK Sevenoaks CD 2010 60 75.90177
## 3338 29UK Sevenoaks CD 2011 55 78.92380
## 3339 29UK Sevenoaks CD 2012 70 82.24866
## 3340 29UK Sevenoaks CD 2013 70 78.69242
## 3341 29UK Sevenoaks CD 2014 55 83.55228
## 3342 29UK Sevenoaks CD 2015 55 87.63727
## 3343 29UK Sevenoaks CD 2016 55 91.81296
## 3344 29UK Sevenoaks CD 2017 60 89.00601
## 3345 29UL Folkestone and Hythe CD 2002 125 71.42127
## 3346 29UL Folkestone and Hythe CD 2003 100 72.35645
## 3347 29UL Folkestone and Hythe CD 2004 85 71.09883
## 3348 29UL Folkestone and Hythe CD 2005 120 71.10997
## 3349 29UL Folkestone and Hythe CD 2006 110 74.14813
## 3350 29UL Folkestone and Hythe CD 2007 105 75.78254
## 3351 29UL Folkestone and Hythe CD 2008 100 75.69405
## 3352 29UL Folkestone and Hythe CD 2009 95 79.41125
## 3353 29UL Folkestone and Hythe CD 2010 105 83.63474
## 3354 29UL Folkestone and Hythe CD 2011 90 83.93849
## 3355 29UL Folkestone and Hythe CD 2012 105 91.49224
## 3356 29UL Folkestone and Hythe CD 2013 75 92.14885
## 3357 29UL Folkestone and Hythe CD 2014 80 92.00063
## 3358 29UL Folkestone and Hythe CD 2015 95 92.97644
## 3359 29UL Folkestone and Hythe CD 2016 65 94.22880
## 3360 29UL Folkestone and Hythe CD 2017 70 94.66175
## 3361 29UM Swale CD 2002 95 57.75583
## 3362 29UM Swale CD 2003 105 59.13554
## 3363 29UM Swale CD 2004 75 59.48553
## 3364 29UM Swale CD 2005 70 63.18710
## 3365 29UM Swale CD 2006 90 63.32579
## 3366 29UM Swale CD 2007 90 65.81745
## 3367 29UM Swale CD 2008 85 64.14937
## 3368 29UM Swale CD 2009 70 66.99309
## 3369 29UM Swale CD 2010 70 69.57303
## 3370 29UM Swale CD 2011 65 76.13756
## 3371 29UM Swale CD 2012 65 76.68236
## 3372 29UM Swale CD 2013 90 78.30020
## 3373 29UM Swale CD 2014 60 77.84833
## 3374 29UM Swale CD 2015 75 83.07380
## 3375 29UM Swale CD 2016 65 85.71655
## 3376 29UM Swale CD 2017 60 89.55584
## 3377 29UN Thanet CD 2002 170 99.45643
## 3378 29UN Thanet CD 2003 190 99.58707
## 3379 29UN Thanet CD 2004 145 99.95226
## 3380 29UN Thanet CD 2005 155 99.29010
## 3381 29UN Thanet CD 2006 155 101.53171
## 3382 29UN Thanet CD 2007 110 105.66452
## 3383 29UN Thanet CD 2008 125 104.03549
## 3384 29UN Thanet CD 2009 165 105.28204
## 3385 29UN Thanet CD 2010 140 106.69202
## 3386 29UN Thanet CD 2011 120 111.30317
## 3387 29UN Thanet CD 2012 110 110.13357
## 3388 29UN Thanet CD 2013 125 110.78609
## 3389 29UN Thanet CD 2014 90 110.99707
## 3390 29UN Thanet CD 2015 115 114.37156
## 3391 29UN Thanet CD 2016 90 112.74334
## 3392 29UN Thanet CD 2017 95 112.96815
## 3393 29UP Tonbridge and Malling CD 2002 75 51.85760
## 3394 29UP Tonbridge and Malling CD 2003 65 50.74424
## 3395 29UP Tonbridge and Malling CD 2004 55 54.84345
## 3396 29UP Tonbridge and Malling CD 2005 55 53.74964
## 3397 29UP Tonbridge and Malling CD 2006 60 57.41480
## 3398 29UP Tonbridge and Malling CD 2007 60 58.75068
## 3399 29UP Tonbridge and Malling CD 2008 65 60.97528
## 3400 29UP Tonbridge and Malling CD 2009 65 62.82136
## 3401 29UP Tonbridge and Malling CD 2010 65 64.60811
## 3402 29UP Tonbridge and Malling CD 2011 55 70.39637
## 3403 29UP Tonbridge and Malling CD 2012 65 70.05920
## 3404 29UP Tonbridge and Malling CD 2013 50 69.41746
## 3405 29UP Tonbridge and Malling CD 2014 45 76.08951
## 3406 29UP Tonbridge and Malling CD 2015 65 75.16377
## 3407 29UP Tonbridge and Malling CD 2016 45 79.15525
## 3408 29UP Tonbridge and Malling CD 2017 55 80.60759
## 3409 29UQ Tunbridge Wells CD 2002 85 59.29267
## 3410 29UQ Tunbridge Wells CD 2003 75 60.36353
## 3411 29UQ Tunbridge Wells CD 2004 55 63.78961
## 3412 29UQ Tunbridge Wells CD 2005 60 63.89846
## 3413 29UQ Tunbridge Wells CD 2006 80 67.13694
## 3414 29UQ Tunbridge Wells CD 2007 60 68.08419
## 3415 29UQ Tunbridge Wells CD 2008 70 67.77999
## 3416 29UQ Tunbridge Wells CD 2009 70 70.93642
## 3417 29UQ Tunbridge Wells CD 2010 60 71.24553
## 3418 29UQ Tunbridge Wells CD 2011 60 74.38427
## 3419 29UQ Tunbridge Wells CD 2012 55 79.86424
## 3420 29UQ Tunbridge Wells CD 2013 65 77.58366
## 3421 29UQ Tunbridge Wells CD 2014 55 82.15411
## 3422 29UQ Tunbridge Wells CD 2015 70 82.64362
## 3423 29UQ Tunbridge Wells CD 2016 50 86.83850
## 3424 29UQ Tunbridge Wells CD 2017 55 85.90836
## 3425 30UD Burnley CD 2002 90 45.49014
## 3426 30UD Burnley CD 2003 85 44.31674
## 3427 30UD Burnley CD 2004 70 45.23980
## 3428 30UD Burnley CD 2005 60 44.84957
## 3429 30UD Burnley CD 2006 100 45.58138
## 3430 30UD Burnley CD 2007 105 46.99529
## 3431 30UD Burnley CD 2008 80 45.21009
## 3432 30UD Burnley CD 2009 80 47.31262
## 3433 30UD Burnley CD 2010 60 48.25479
## 3434 30UD Burnley CD 2011 85 49.21255
## 3435 30UD Burnley CD 2012 60 51.99999
## 3436 30UD Burnley CD 2013 70 52.42517
## 3437 30UD Burnley CD 2014 55 49.87187
## 3438 30UD Burnley CD 2015 50 51.32956
## 3439 30UD Burnley CD 2016 35 55.42885
## 3440 30UD Burnley CD 2017 60 52.80994
## 3441 30UE Chorley CD 2002 105 48.70964
## 3442 30UE Chorley CD 2003 90 45.74090
## 3443 30UE Chorley CD 2004 75 47.17670
## 3444 30UE Chorley CD 2005 105 48.47696
## 3445 30UE Chorley CD 2006 65 51.32175
## 3446 30UE Chorley CD 2007 75 49.87897
## 3447 30UE Chorley CD 2008 85 51.66282
## 3448 30UE Chorley CD 2009 70 50.38158
## 3449 30UE Chorley CD 2010 65 56.21165
## 3450 30UE Chorley CD 2011 50 56.29015
## 3451 30UE Chorley CD 2012 75 60.79649
## 3452 30UE Chorley CD 2013 70 59.99142
## 3453 30UE Chorley CD 2014 70 64.25071
## 3454 30UE Chorley CD 2015 60 62.96539
## 3455 30UE Chorley CD 2016 50 70.11907
## 3456 30UE Chorley CD 2017 70 68.80206
## 3457 30UF Fylde CD 2002 85 56.11672
## 3458 30UF Fylde CD 2003 80 59.72616
## 3459 30UF Fylde CD 2004 75 58.46311
## 3460 30UF Fylde CD 2005 85 62.09288
## 3461 30UF Fylde CD 2006 90 59.68482
## 3462 30UF Fylde CD 2007 90 62.41697
## 3463 30UF Fylde CD 2008 90 61.55489
## 3464 30UF Fylde CD 2009 75 61.20362
## 3465 30UF Fylde CD 2010 70 66.04145
## 3466 30UF Fylde CD 2011 75 70.34197
## 3467 30UF Fylde CD 2012 70 70.82375
## 3468 30UF Fylde CD 2013 50 67.85125
## 3469 30UF Fylde CD 2014 55 73.09339
## 3470 30UF Fylde CD 2015 75 75.05354
## 3471 30UF Fylde CD 2016 80 74.60702
## 3472 30UF Fylde CD 2017 45 76.77500
## 3473 30UG Hyndburn CD 2002 65 40.21144
## 3474 30UG Hyndburn CD 2003 80 37.99633
## 3475 30UG Hyndburn CD 2004 55 41.51289
## 3476 30UG Hyndburn CD 2005 55 40.23647
## 3477 30UG Hyndburn CD 2006 65 40.84248
## 3478 30UG Hyndburn CD 2007 50 43.27177
## 3479 30UG Hyndburn CD 2008 70 40.33966
## 3480 30UG Hyndburn CD 2009 45 39.30872
## 3481 30UG Hyndburn CD 2010 55 42.30815
## 3482 30UG Hyndburn CD 2011 45 44.25473
## 3483 30UG Hyndburn CD 2012 40 42.51497
## 3484 30UG Hyndburn CD 2013 45 46.32556
## 3485 30UG Hyndburn CD 2014 50 46.65733
## 3486 30UG Hyndburn CD 2015 50 43.28514
## 3487 30UG Hyndburn CD 2016 50 47.79345
## 3488 30UG Hyndburn CD 2017 40 45.09733
## 3489 30UH Lancaster CD 2002 95 81.53660
## 3490 30UH Lancaster CD 2003 100 82.39650
## 3491 30UH Lancaster CD 2004 95 82.70670
## 3492 30UH Lancaster CD 2005 115 83.25290
## 3493 30UH Lancaster CD 2006 105 82.96514
## 3494 30UH Lancaster CD 2007 115 84.45263
## 3495 30UH Lancaster CD 2008 110 84.51423
## 3496 30UH Lancaster CD 2009 105 85.73499
## 3497 30UH Lancaster CD 2010 90 86.45279
## 3498 30UH Lancaster CD 2011 80 91.37825
## 3499 30UH Lancaster CD 2012 80 90.23096
## 3500 30UH Lancaster CD 2013 90 95.37657
## 3501 30UH Lancaster CD 2014 75 97.71753
## 3502 30UH Lancaster CD 2015 70 92.03300
## 3503 30UH Lancaster CD 2016 100 93.75165
## 3504 30UH Lancaster CD 2017 70 94.43394
## 3505 30UJ Pendle CD 2002 75 45.04563
## 3506 30UJ Pendle CD 2003 75 44.65711
## 3507 30UJ Pendle CD 2004 65 45.41605
## 3508 30UJ Pendle CD 2005 65 46.32137
## 3509 30UJ Pendle CD 2006 80 46.19555
## 3510 30UJ Pendle CD 2007 65 46.49634
## 3511 30UJ Pendle CD 2008 55 47.41740
## 3512 30UJ Pendle CD 2009 60 47.65315
## 3513 30UJ Pendle CD 2010 60 46.18984
## 3514 30UJ Pendle CD 2011 50 50.86381
## 3515 30UJ Pendle CD 2012 50 50.44635
## 3516 30UJ Pendle CD 2013 45 52.02358
## 3517 30UJ Pendle CD 2014 45 50.57176
## 3518 30UJ Pendle CD 2015 40 52.67925
## 3519 30UJ Pendle CD 2016 35 50.86486
## 3520 30UJ Pendle CD 2017 50 54.15828
## 3521 30UK Preston CD 2002 125 58.34109
## 3522 30UK Preston CD 2003 115 59.57451
## 3523 30UK Preston CD 2004 100 57.61387
## 3524 30UK Preston CD 2005 100 58.75151
## 3525 30UK Preston CD 2006 90 60.65207
## 3526 30UK Preston CD 2007 120 59.60444
## 3527 30UK Preston CD 2008 115 60.07864
## 3528 30UK Preston CD 2009 85 61.61432
## 3529 30UK Preston CD 2010 105 63.94914
## 3530 30UK Preston CD 2011 95 68.56869
## 3531 30UK Preston CD 2012 95 70.49667
## 3532 30UK Preston CD 2013 85 68.36096
## 3533 30UK Preston CD 2014 95 71.47311
## 3534 30UK Preston CD 2015 95 69.84208
## 3535 30UK Preston CD 2016 70 73.31139
## 3536 30UK Preston CD 2017 75 70.57815
## 3537 30UL Ribble Valley CD 2002 25 29.56539
## 3538 30UL Ribble Valley CD 2003 35 31.49819
## 3539 30UL Ribble Valley CD 2004 40 33.34879
## 3540 30UL Ribble Valley CD 2005 30 31.74897
## 3541 30UL Ribble Valley CD 2006 45 32.65482
## 3542 30UL Ribble Valley CD 2007 35 32.76704
## 3543 30UL Ribble Valley CD 2008 30 33.16137
## 3544 30UL Ribble Valley CD 2009 50 33.85841
## 3545 30UL Ribble Valley CD 2010 50 39.48940
## 3546 30UL Ribble Valley CD 2011 35 39.29263
## 3547 30UL Ribble Valley CD 2012 35 39.60035
## 3548 30UL Ribble Valley CD 2013 40 43.63692
## 3549 30UL Ribble Valley CD 2014 40 45.45203
## 3550 30UL Ribble Valley CD 2015 30 43.00091
## 3551 30UL Ribble Valley CD 2016 25 46.47783
## 3552 30UL Ribble Valley CD 2017 30 45.03212
## 3553 30UM Rossendale CD 2002 55 29.46030
## 3554 30UM Rossendale CD 2003 60 28.68390
## 3555 30UM Rossendale CD 2004 65 29.45354
## 3556 30UM Rossendale CD 2005 55 31.57728
## 3557 30UM Rossendale CD 2006 55 29.82047
## 3558 30UM Rossendale CD 2007 45 30.82408
## 3559 30UM Rossendale CD 2008 55 32.47124
## 3560 30UM Rossendale CD 2009 45 31.30298
## 3561 30UM Rossendale CD 2010 55 35.66728
## 3562 30UM Rossendale CD 2011 55 37.21728
## 3563 30UM Rossendale CD 2012 45 36.55613
## 3564 30UM Rossendale CD 2013 50 36.59007
## 3565 30UM Rossendale CD 2014 35 36.34335
## 3566 30UM Rossendale CD 2015 25 36.29065
## 3567 30UM Rossendale CD 2016 30 39.98287
## 3568 30UM Rossendale CD 2017 35 39.24233
## 3569 30UN South Ribble CD 2002 70 49.97859
## 3570 30UN South Ribble CD 2003 85 52.66091
## 3571 30UN South Ribble CD 2004 65 50.84053
## 3572 30UN South Ribble CD 2005 65 52.66288
## 3573 30UN South Ribble CD 2006 90 54.75168
## 3574 30UN South Ribble CD 2007 85 55.22437
## 3575 30UN South Ribble CD 2008 100 56.43069
## 3576 30UN South Ribble CD 2009 60 57.99695
## 3577 30UN South Ribble CD 2010 70 59.35619
## 3578 30UN South Ribble CD 2011 65 60.32915
## 3579 30UN South Ribble CD 2012 65 63.44708
## 3580 30UN South Ribble CD 2013 65 66.98851
## 3581 30UN South Ribble CD 2014 65 68.10540
## 3582 30UN South Ribble CD 2015 60 70.22213
## 3583 30UN South Ribble CD 2016 65 72.47273
## 3584 30UN South Ribble CD 2017 70 76.75898
## 3585 30UP West Lancashire CD 2002 60 52.97964
## 3586 30UP West Lancashire CD 2003 80 54.18655
## 3587 30UP West Lancashire CD 2004 65 54.88400
## 3588 30UP West Lancashire CD 2005 65 53.44147
## 3589 30UP West Lancashire CD 2006 65 57.93486
## 3590 30UP West Lancashire CD 2007 45 59.31432
## 3591 30UP West Lancashire CD 2008 60 59.75269
## 3592 30UP West Lancashire CD 2009 65 59.41620
## 3593 30UP West Lancashire CD 2010 65 62.77374
## 3594 30UP West Lancashire CD 2011 50 65.67009
## 3595 30UP West Lancashire CD 2012 65 65.45303
## 3596 30UP West Lancashire CD 2013 70 69.83554
## 3597 30UP West Lancashire CD 2014 50 74.51083
## 3598 30UP West Lancashire CD 2015 50 73.44862
## 3599 30UP West Lancashire CD 2016 50 76.03905
## 3600 30UP West Lancashire CD 2017 60 79.76094
## 3601 30UQ Wyre CD 2002 115 73.56261
## 3602 30UQ Wyre CD 2003 120 75.54715
## 3603 30UQ Wyre CD 2004 95 74.85688
## 3604 30UQ Wyre CD 2005 130 76.39938
## 3605 30UQ Wyre CD 2006 105 76.43998
## 3606 30UQ Wyre CD 2007 120 82.07319
## 3607 30UQ Wyre CD 2008 110 83.27245
## 3608 30UQ Wyre CD 2009 95 84.27204
## 3609 30UQ Wyre CD 2010 85 88.50507
## 3610 30UQ Wyre CD 2011 90 91.70797
## 3611 30UQ Wyre CD 2012 80 92.23527
## 3612 30UQ Wyre CD 2013 70 94.47941
## 3613 30UQ Wyre CD 2014 80 98.70750
## 3614 30UQ Wyre CD 2015 90 100.45076
## 3615 30UQ Wyre CD 2016 90 100.26709
## 3616 30UQ Wyre CD 2017 80 102.33863
## 3617 31UB Blaby CD 2002 60 41.72488
## 3618 31UB Blaby CD 2003 55 41.16041
## 3619 31UB Blaby CD 2004 55 44.97956
## 3620 31UB Blaby CD 2005 45 44.72869
## 3621 31UB Blaby CD 2006 45 45.52955
## 3622 31UB Blaby CD 2007 40 48.82075
## 3623 31UB Blaby CD 2008 55 49.43050
## 3624 31UB Blaby CD 2009 35 48.96575
## 3625 31UB Blaby CD 2010 40 56.43410
## 3626 31UB Blaby CD 2011 35 54.22774
## 3627 31UB Blaby CD 2012 40 60.23639
## 3628 31UB Blaby CD 2013 50 58.52822
## 3629 31UB Blaby CD 2014 40 60.74554
## 3630 31UB Blaby CD 2015 50 63.15456
## 3631 31UB Blaby CD 2016 40 64.81210
## 3632 31UB Blaby CD 2017 45 65.43840
## 3633 31UC Charnwood CD 2002 125 74.99891
## 3634 31UC Charnwood CD 2003 145 76.69483
## 3635 31UC Charnwood CD 2004 105 77.67881
## 3636 31UC Charnwood CD 2005 110 77.99340
## 3637 31UC Charnwood CD 2006 95 79.58214
## 3638 31UC Charnwood CD 2007 85 83.79219
## 3639 31UC Charnwood CD 2008 70 84.08878
## 3640 31UC Charnwood CD 2009 75 88.78609
## 3641 31UC Charnwood CD 2010 90 95.05311
## 3642 31UC Charnwood CD 2011 55 94.75901
## 3643 31UC Charnwood CD 2012 80 102.98730
## 3644 31UC Charnwood CD 2013 75 100.32930
## 3645 31UC Charnwood CD 2014 75 105.65438
## 3646 31UC Charnwood CD 2015 80 109.27093
## 3647 31UC Charnwood CD 2016 75 108.51226
## 3648 31UC Charnwood CD 2017 70 113.88203
## 3649 31UD Harborough CD 2002 60 39.14706
## 3650 31UD Harborough CD 2003 55 40.01505
## 3651 31UD Harborough CD 2004 65 40.71833
## 3652 31UD Harborough CD 2005 50 42.72820
## 3653 31UD Harborough CD 2006 50 46.60458
## 3654 31UD Harborough CD 2007 55 45.50805
## 3655 31UD Harborough CD 2008 40 47.82118
## 3656 31UD Harborough CD 2009 45 52.31272
## 3657 31UD Harborough CD 2010 35 48.72255
## 3658 31UD Harborough CD 2011 35 55.06173
## 3659 31UD Harborough CD 2012 40 53.62670
## 3660 31UD Harborough CD 2013 25 59.02121
## 3661 31UD Harborough CD 2014 40 60.25582
## 3662 31UD Harborough CD 2015 40 60.05570
## 3663 31UD Harborough CD 2016 35 67.44910
## 3664 31UD Harborough CD 2017 25 66.72061
## 3665 31UE Hinckley and Bosworth CD 2002 85 54.20905
## 3666 31UE Hinckley and Bosworth CD 2003 70 52.42517
## 3667 31UE Hinckley and Bosworth CD 2004 55 55.48699
## 3668 31UE Hinckley and Bosworth CD 2005 90 53.60220
## 3669 31UE Hinckley and Bosworth CD 2006 65 56.79343
## 3670 31UE Hinckley and Bosworth CD 2007 85 56.33168
## 3671 31UE Hinckley and Bosworth CD 2008 70 58.79059
## 3672 31UE Hinckley and Bosworth CD 2009 50 58.14936
## 3673 31UE Hinckley and Bosworth CD 2010 55 59.50971
## 3674 31UE Hinckley and Bosworth CD 2011 60 62.14173
## 3675 31UE Hinckley and Bosworth CD 2012 55 69.30137
## 3676 31UE Hinckley and Bosworth CD 2013 45 68.54672
## 3677 31UE Hinckley and Bosworth CD 2014 50 73.65708
## 3678 31UE Hinckley and Bosworth CD 2015 60 73.44862
## 3679 31UE Hinckley and Bosworth CD 2016 50 74.41587
## 3680 31UE Hinckley and Bosworth CD 2017 60 75.43194
## 3681 31UG Melton CD 2002 40 25.93744
## 3682 31UG Melton CD 2003 25 25.94224
## 3683 31UG Melton CD 2004 35 27.88617
## 3684 31UG Melton CD 2005 35 27.74107
## 3685 31UG Melton CD 2006 30 29.96364
## 3686 31UG Melton CD 2007 20 27.94973
## 3687 31UG Melton CD 2008 25 29.76382
## 3688 31UG Melton CD 2009 20 29.17455
## 3689 31UG Melton CD 2010 15 32.81454
## 3690 31UG Melton CD 2011 15 27.44614
## 3691 31UG Melton CD 2012 20 30.16357
## 3692 31UG Melton CD 2013 25 35.25356
## 3693 31UG Melton CD 2014 30 37.46724
## 3694 31UG Melton CD 2015 25 36.75128
## 3695 31UG Melton CD 2016 20 36.21188
## 3696 31UG Melton CD 2017 25 38.47462
## 3697 31UH North West Leicestershire CD 2002 70 41.97603
## 3698 31UH North West Leicestershire CD 2003 65 43.56336
## 3699 31UH North West Leicestershire CD 2004 65 45.76746
## 3700 31UH North West Leicestershire CD 2005 60 45.46800
## 3701 31UH North West Leicestershire CD 2006 45 45.45080
## 3702 31UH North West Leicestershire CD 2007 50 49.46000
## 3703 31UH North West Leicestershire CD 2008 60 48.21329
## 3704 31UH North West Leicestershire CD 2009 45 49.02284
## 3705 31UH North West Leicestershire CD 2010 40 50.78915
## 3706 31UH North West Leicestershire CD 2011 30 54.00384
## 3707 31UH North West Leicestershire CD 2012 40 56.07842
## 3708 31UH North West Leicestershire CD 2013 45 58.31067
## 3709 31UH North West Leicestershire CD 2014 45 58.03164
## 3710 31UH North West Leicestershire CD 2015 45 62.10654
## 3711 31UH North West Leicestershire CD 2016 45 64.99329
## 3712 31UH North West Leicestershire CD 2017 45 62.58111
## 3713 31UJ Oadby and Wigston CD 2002 50 30.32939
## 3714 31UJ Oadby and Wigston CD 2003 45 29.73267
## 3715 31UJ Oadby and Wigston CD 2004 45 32.36655
## 3716 31UJ Oadby and Wigston CD 2005 45 30.66371
## 3717 31UJ Oadby and Wigston CD 2006 30 34.00905
## 3718 31UJ Oadby and Wigston CD 2007 40 35.27308
## 3719 31UJ Oadby and Wigston CD 2008 40 35.70218
## 3720 31UJ Oadby and Wigston CD 2009 40 37.02998
## 3721 31UJ Oadby and Wigston CD 2010 30 41.26214
## 3722 31UJ Oadby and Wigston CD 2011 25 36.66666
## 3723 31UJ Oadby and Wigston CD 2012 20 40.24120
## 3724 31UJ Oadby and Wigston CD 2013 40 43.39034
## 3725 31UJ Oadby and Wigston CD 2014 25 40.17774
## 3726 31UJ Oadby and Wigston CD 2015 30 43.53976
## 3727 31UJ Oadby and Wigston CD 2016 20 46.58134
## 3728 31UJ Oadby and Wigston CD 2017 35 50.49829
## 3729 32UB Boston CD 2002 35 33.56761
## 3730 32UB Boston CD 2003 40 36.52332
## 3731 32UB Boston CD 2004 30 36.73715
## 3732 32UB Boston CD 2005 45 39.54288
## 3733 32UB Boston CD 2006 30 35.98561
## 3734 32UB Boston CD 2007 50 40.56384
## 3735 32UB Boston CD 2008 35 38.74328
## 3736 32UB Boston CD 2009 40 37.95517
## 3737 32UB Boston CD 2010 20 42.51174
## 3738 32UB Boston CD 2011 25 40.83808
## 3739 32UB Boston CD 2012 35 46.14204
## 3740 32UB Boston CD 2013 45 44.18960
## 3741 32UB Boston CD 2014 25 42.77777
## 3742 32UB Boston CD 2015 25 43.33332
## 3743 32UB Boston CD 2016 25 48.17131
## 3744 32UB Boston CD 2017 40 49.18918
## 3745 32UC East Lindsey CD 2002 110 90.43410
## 3746 32UC East Lindsey CD 2003 125 92.44549
## 3747 32UC East Lindsey CD 2004 105 96.18706
## 3748 32UC East Lindsey CD 2005 120 97.78913
## 3749 32UC East Lindsey CD 2006 135 98.26466
## 3750 32UC East Lindsey CD 2007 85 99.11713
## 3751 32UC East Lindsey CD 2008 125 105.52708
## 3752 32UC East Lindsey CD 2009 130 106.40226
## 3753 32UC East Lindsey CD 2010 95 109.22386
## 3754 32UC East Lindsey CD 2011 95 111.63254
## 3755 32UC East Lindsey CD 2012 90 114.96306
## 3756 32UC East Lindsey CD 2013 110 115.89652
## 3757 32UC East Lindsey CD 2014 85 118.30268
## 3758 32UC East Lindsey CD 2015 95 120.88710
## 3759 32UC East Lindsey CD 2016 90 124.55656
## 3760 32UC East Lindsey CD 2017 105 126.48011
## 3761 32UD Lincoln CD 2002 50 44.09413
## 3762 32UD Lincoln CD 2003 60 43.89662
## 3763 32UD Lincoln CD 2004 60 45.62590
## 3764 32UD Lincoln CD 2005 55 43.94856
## 3765 32UD Lincoln CD 2006 65 48.40630
## 3766 32UD Lincoln CD 2007 45 46.12227
## 3767 32UD Lincoln CD 2008 45 47.35881
## 3768 32UD Lincoln CD 2009 45 51.75885
## 3769 32UD Lincoln CD 2010 45 50.25740
## 3770 32UD Lincoln CD 2011 60 51.64229
## 3771 32UD Lincoln CD 2012 30 49.61292
## 3772 32UD Lincoln CD 2013 50 53.49670
## 3773 32UD Lincoln CD 2014 25 51.78095
## 3774 32UD Lincoln CD 2015 35 50.95999
## 3775 32UD Lincoln CD 2016 40 56.61077
## 3776 32UD Lincoln CD 2017 40 51.15998
## 3777 32UE North Kesteven CD 2002 65 53.38196
## 3778 32UE North Kesteven CD 2003 75 53.44502
## 3779 32UE North Kesteven CD 2004 65 58.83670
## 3780 32UE North Kesteven CD 2005 55 57.62765
## 3781 32UE North Kesteven CD 2006 45 60.71338
## 3782 32UE North Kesteven CD 2007 50 60.57749
## 3783 32UE North Kesteven CD 2008 55 63.75267
## 3784 32UE North Kesteven CD 2009 55 65.14282
## 3785 32UE North Kesteven CD 2010 50 72.35645
## 3786 32UE North Kesteven CD 2011 65 74.47550
## 3787 32UE North Kesteven CD 2012 40 73.96225
## 3788 32UE North Kesteven CD 2013 60 76.91546
## 3789 32UE North Kesteven CD 2014 40 85.11386
## 3790 32UE North Kesteven CD 2015 45 87.50241
## 3791 32UE North Kesteven CD 2016 50 87.35816
## 3792 32UE North Kesteven CD 2017 45 87.27233
## 3793 32UF South Holland CD 2002 45 51.55153
## 3794 32UF South Holland CD 2003 45 52.27803
## 3795 32UF South Holland CD 2004 55 54.30634
## 3796 32UF South Holland CD 2005 55 56.37579
## 3797 32UF South Holland CD 2006 45 56.02611
## 3798 32UF South Holland CD 2007 60 59.72298
## 3799 32UF South Holland CD 2008 55 62.38021
## 3800 32UF South Holland CD 2009 50 59.85818
## 3801 32UF South Holland CD 2010 45 65.79341
## 3802 32UF South Holland CD 2011 40 66.52740
## 3803 32UF South Holland CD 2012 45 67.08115
## 3804 32UF South Holland CD 2013 55 69.37622
## 3805 32UF South Holland CD 2014 65 74.91034
## 3806 32UF South Holland CD 2015 60 76.60712
## 3807 32UF South Holland CD 2016 50 75.28740
## 3808 32UF South Holland CD 2017 45 79.85689
## 3809 32UG South Kesteven CD 2002 65 64.11697
## 3810 32UG South Kesteven CD 2003 70 69.29291
## 3811 32UG South Kesteven CD 2004 70 72.88111
## 3812 32UG South Kesteven CD 2005 60 75.94976
## 3813 32UG South Kesteven CD 2006 70 77.75064
## 3814 32UG South Kesteven CD 2007 45 74.20921
## 3815 32UG South Kesteven CD 2008 60 80.30944
## 3816 32UG South Kesteven CD 2009 60 83.45804
## 3817 32UG South Kesteven CD 2010 60 83.02951
## 3818 32UG South Kesteven CD 2011 55 92.80792
## 3819 32UG South Kesteven CD 2012 50 90.19177
## 3820 32UG South Kesteven CD 2013 50 93.42664
## 3821 32UG South Kesteven CD 2014 35 96.55313
## 3822 32UG South Kesteven CD 2015 60 97.87450
## 3823 32UG South Kesteven CD 2016 60 102.54144
## 3824 32UG South Kesteven CD 2017 70 104.03858
## 3825 32UH West Lindsey CD 2002 50 43.56773
## 3826 32UH West Lindsey CD 2003 65 46.25786
## 3827 32UH West Lindsey CD 2004 60 47.52924
## 3828 32UH West Lindsey CD 2005 50 48.63944
## 3829 32UH West Lindsey CD 2006 50 51.28448
## 3830 32UH West Lindsey CD 2007 55 54.57550
## 3831 32UH West Lindsey CD 2008 45 57.59703
## 3832 32UH West Lindsey CD 2009 55 55.61912
## 3833 32UH West Lindsey CD 2010 55 58.82392
## 3834 32UH West Lindsey CD 2011 60 59.39393
## 3835 32UH West Lindsey CD 2012 35 61.00620
## 3836 32UH West Lindsey CD 2013 45 65.49277
## 3837 32UH West Lindsey CD 2014 40 61.55940
## 3838 32UH West Lindsey CD 2015 50 63.42897
## 3839 32UH West Lindsey CD 2016 30 72.56125
## 3840 32UH West Lindsey CD 2017 40 67.74137
## 3841 33UB Breckland CD 2002 100 78.99660
## 3842 33UB Breckland CD 2003 75 78.25551
## 3843 33UB Breckland CD 2004 75 84.35391
## 3844 33UB Breckland CD 2005 90 88.51566
## 3845 33UB Breckland CD 2006 85 89.17426
## 3846 33UB Breckland CD 2007 90 87.81922
## 3847 33UB Breckland CD 2008 90 89.88453
## 3848 33UB Breckland CD 2009 95 95.51113
## 3849 33UB Breckland CD 2010 90 94.34211
## 3850 33UB Breckland CD 2011 80 97.88019
## 3851 33UB Breckland CD 2012 70 99.53123
## 3852 33UB Breckland CD 2013 75 104.02313
## 3853 33UB Breckland CD 2014 70 111.19698
## 3854 33UB Breckland CD 2015 80 109.23899
## 3855 33UB Breckland CD 2016 80 112.74334
## 3856 33UB Breckland CD 2017 60 116.78331
## 3857 33UC Broadland CD 2002 105 79.07726
## 3858 33UC Broadland CD 2003 90 77.60643
## 3859 33UC Broadland CD 2004 70 79.79987
## 3860 33UC Broadland CD 2005 95 82.24176
## 3861 33UC Broadland CD 2006 70 81.05931
## 3862 33UC Broadland CD 2007 60 88.13834
## 3863 33UC Broadland CD 2008 70 90.19674
## 3864 33UC Broadland CD 2009 95 87.31748
## 3865 33UC Broadland CD 2010 85 91.82776
## 3866 33UC Broadland CD 2011 70 98.74972
## 3867 33UC Broadland CD 2012 70 99.60197
## 3868 33UC Broadland CD 2013 95 107.22694
## 3869 33UC Broadland CD 2014 70 108.06122
## 3870 33UC Broadland CD 2015 95 108.85770
## 3871 33UC Broadland CD 2016 60 116.70226
## 3872 33UC Broadland CD 2017 70 118.04811
## 3873 33UD Great Yarmouth CD 2002 85 59.01653
## 3874 33UD Great Yarmouth CD 2003 95 62.33984
## 3875 33UD Great Yarmouth CD 2004 80 62.34331
## 3876 33UD Great Yarmouth CD 2005 75 64.20193
## 3877 33UD Great Yarmouth CD 2006 65 63.23567
## 3878 33UD Great Yarmouth CD 2007 60 64.43217
## 3879 33UD Great Yarmouth CD 2008 60 67.20804
## 3880 33UD Great Yarmouth CD 2009 45 69.77538
## 3881 33UD Great Yarmouth CD 2010 45 70.79365
## 3882 33UD Great Yarmouth CD 2011 55 71.22249
## 3883 33UD Great Yarmouth CD 2012 65 71.30409
## 3884 33UD Great Yarmouth CD 2013 50 73.51798
## 3885 33UD Great Yarmouth CD 2014 45 79.01640
## 3886 33UD Great Yarmouth CD 2015 45 73.63730
## 3887 33UD Great Yarmouth CD 2016 35 78.61675
## 3888 33UD Great Yarmouth CD 2017 50 81.80012
## 3889 33UE King's Lynn and West Norfolk CD 2002 100 95.04236
## 3890 33UE King's Lynn and West Norfolk CD 2003 100 95.27498
## 3891 33UE King's Lynn and West Norfolk CD 2004 135 97.27939
## 3892 33UE King's Lynn and West Norfolk CD 2005 115 100.43059
## 3893 33UE King's Lynn and West Norfolk CD 2006 80 101.69809
## 3894 33UE King's Lynn and West Norfolk CD 2007 105 104.88771
## 3895 33UE King's Lynn and West Norfolk CD 2008 110 103.90534
## 3896 33UE King's Lynn and West Norfolk CD 2009 115 109.04727
## 3897 33UE King's Lynn and West Norfolk CD 2010 105 112.36024
## 3898 33UE King's Lynn and West Norfolk CD 2011 95 116.18201
## 3899 33UE King's Lynn and West Norfolk CD 2012 70 116.10602
## 3900 33UE King's Lynn and West Norfolk CD 2013 90 121.64928
## 3901 33UE King's Lynn and West Norfolk CD 2014 80 127.96710
## 3902 33UE King's Lynn and West Norfolk CD 2015 85 129.64625
## 3903 33UE King's Lynn and West Norfolk CD 2016 85 129.29444
## 3904 33UE King's Lynn and West Norfolk CD 2017 95 129.36835
## 3905 33UF North Norfolk CD 2002 105 86.87900
## 3906 33UF North Norfolk CD 2003 105 87.78604
## 3907 33UF North Norfolk CD 2004 90 88.64008
## 3908 33UF North Norfolk CD 2005 75 92.70969
## 3909 33UF North Norfolk CD 2006 65 92.38436
## 3910 33UF North Norfolk CD 2007 85 97.73463
## 3911 33UF North Norfolk CD 2008 75 96.67492
## 3912 33UF North Norfolk CD 2009 90 97.17695
## 3913 33UF North Norfolk CD 2010 85 99.35689
## 3914 33UF North Norfolk CD 2011 55 102.25124
## 3915 33UF North Norfolk CD 2012 70 104.33735
## 3916 33UF North Norfolk CD 2013 75 107.97717
## 3917 33UF North Norfolk CD 2014 60 109.17162
## 3918 33UF North Norfolk CD 2015 75 116.61486
## 3919 33UF North Norfolk CD 2016 70 116.17477
## 3920 33UF North Norfolk CD 2017 70 117.44041
## 3921 33UG Norwich CD 2002 65 71.28177
## 3922 33UG Norwich CD 2003 65 72.84365
## 3923 33UG Norwich CD 2004 55 70.40280
## 3924 33UG Norwich CD 2005 55 76.06531
## 3925 33UG Norwich CD 2006 55 72.98265
## 3926 33UG Norwich CD 2007 55 76.51840
## 3927 33UG Norwich CD 2008 55 75.07254
## 3928 33UG Norwich CD 2009 70 76.27554
## 3929 33UG Norwich CD 2010 60 76.69797
## 3930 33UG Norwich CD 2011 65 77.92880
## 3931 33UG Norwich CD 2012 55 80.17161
## 3932 33UG Norwich CD 2013 55 81.95320
## 3933 33UG Norwich CD 2014 40 85.71252
## 3934 33UG Norwich CD 2015 60 83.01311
## 3935 33UG Norwich CD 2016 55 82.50587
## 3936 33UG Norwich CD 2017 55 84.23714
## 3937 33UH South Norfolk CD 2002 60 71.82981
## 3938 33UH South Norfolk CD 2003 55 71.95387
## 3939 33UH South Norfolk CD 2004 50 76.28741
## 3940 33UH South Norfolk CD 2005 55 76.75461
## 3941 33UH South Norfolk CD 2006 65 79.47908
## 3942 33UH South Norfolk CD 2007 55 84.49570
## 3943 33UH South Norfolk CD 2008 60 85.57295
## 3944 33UH South Norfolk CD 2009 55 83.59759
## 3945 33UH South Norfolk CD 2010 65 88.24080
## 3946 33UH South Norfolk CD 2011 50 90.98816
## 3947 33UH South Norfolk CD 2012 65 94.70886
## 3948 33UH South Norfolk CD 2013 60 94.72117
## 3949 33UH South Norfolk CD 2014 45 99.32743
## 3950 33UH South Norfolk CD 2015 65 101.60734
## 3951 33UH South Norfolk CD 2016 60 108.28587
## 3952 33UH South Norfolk CD 2017 75 112.43579
## 3953 34UB Corby CD 2002 30 18.99430
## 3954 34UB Corby CD 2003 35 21.25081
## 3955 34UB Corby CD 2004 20 23.21928
## 3956 34UB Corby CD 2005 25 21.79335
## 3957 34UB Corby CD 2006 35 23.06776
## 3958 34UB Corby CD 2007 25 24.41633
## 3959 34UB Corby CD 2008 25 21.56398
## 3960 34UB Corby CD 2009 25 23.13304
## 3961 34UB Corby CD 2010 25 24.07076
## 3962 34UB Corby CD 2011 25 24.20379
## 3963 34UB Corby CD 2012 20 26.41409
## 3964 34UB Corby CD 2013 15 24.31860
## 3965 34UB Corby CD 2014 25 26.07934
## 3966 34UB Corby CD 2015 30 27.59204
## 3967 34UB Corby CD 2016 35 28.34710
## 3968 34UB Corby CD 2017 25 29.26411
## 3969 34UC Daventry CD 2002 45 29.53355
## 3970 34UC Daventry CD 2003 50 30.35567
## 3971 34UC Daventry CD 2004 60 33.22033
## 3972 34UC Daventry CD 2005 50 33.47026
## 3973 34UC Daventry CD 2006 40 34.19716
## 3974 34UC Daventry CD 2007 30 39.37253
## 3975 34UC Daventry CD 2008 45 35.03499
## 3976 34UC Daventry CD 2009 50 37.66596
## 3977 34UC Daventry CD 2010 50 39.10592
## 3978 34UC Daventry CD 2011 35 45.82733
## 3979 34UC Daventry CD 2012 50 44.15804
## 3980 34UC Daventry CD 2013 25 41.91290
## 3981 34UC Daventry CD 2014 35 49.41964
## 3982 34UC Daventry CD 2015 35 45.03212
## 3983 34UC Daventry CD 2016 25 46.49017
## 3984 34UC Daventry CD 2017 25 56.81964
## 3985 34UD East Northamptonshire CD 2002 55 41.06392
## 3986 34UD East Northamptonshire CD 2003 70 40.79257
## 3987 34UD East Northamptonshire CD 2004 70 41.22110
## 3988 34UD East Northamptonshire CD 2005 60 44.50772
## 3989 34UD East Northamptonshire CD 2006 45 44.56748
## 3990 34UD East Northamptonshire CD 2007 35 47.25791
## 3991 34UD East Northamptonshire CD 2008 50 46.77569
## 3992 34UD East Northamptonshire CD 2009 60 48.31580
## 3993 34UD East Northamptonshire CD 2010 45 50.77535
## 3994 34UD East Northamptonshire CD 2011 40 52.18394
## 3995 34UD East Northamptonshire CD 2012 30 50.36175
## 3996 34UD East Northamptonshire CD 2013 30 52.33008
## 3997 34UD East Northamptonshire CD 2014 35 56.80911
## 3998 34UD East Northamptonshire CD 2015 50 61.08978
## 3999 34UD East Northamptonshire CD 2016 45 58.89334
## 4000 34UD East Northamptonshire CD 2017 35 65.84641
## 4001 34UE Kettering CD 2002 65 43.25924
## 4002 34UE Kettering CD 2003 70 45.54012
## 4003 34UE Kettering CD 2004 65 45.29411
## 4004 34UE Kettering CD 2005 40 44.27453
## 4005 34UE Kettering CD 2006 45 47.10763
## 4006 34UE Kettering CD 2007 30 46.49634
## 4007 34UE Kettering CD 2008 45 47.98584
## 4008 34UE Kettering CD 2009 45 49.14126
## 4009 34UE Kettering CD 2010 25 52.05020
## 4010 34UE Kettering CD 2011 50 56.87960
## 4011 34UE Kettering CD 2012 50 58.36733
## 4012 34UE Kettering CD 2013 30 53.19078
## 4013 34UE Kettering CD 2014 25 59.41155
## 4014 34UE Kettering CD 2015 55 58.93186
## 4015 34UE Kettering CD 2016 55 62.99712
## 4016 34UE Kettering CD 2017 40 62.94182
## 4017 34UF Northampton CD 2002 145 90.24424
## 4018 34UF Northampton CD 2003 135 88.46806
## 4019 34UF Northampton CD 2004 130 88.94735
## 4020 34UF Northampton CD 2005 140 89.57083
## 4021 34UF Northampton CD 2006 130 94.61049
## 4022 34UF Northampton CD 2007 100 94.58053
## 4023 34UF Northampton CD 2008 120 95.88230
## 4024 34UF Northampton CD 2009 135 96.38237
## 4025 34UF Northampton CD 2010 110 102.25124
## 4026 34UF Northampton CD 2011 125 103.42738
## 4027 34UF Northampton CD 2012 115 108.06743
## 4028 34UF Northampton CD 2013 85 105.15446
## 4029 34UF Northampton CD 2014 95 111.19433
## 4030 34UF Northampton CD 2015 95 113.77914
## 4031 34UF Northampton CD 2016 85 116.00991
## 4032 34UF Northampton CD 2017 90 117.55613
## 4033 34UG South Northamptonshire CD 2002 45 39.20852
## 4034 34UG South Northamptonshire CD 2003 70 37.77939
## 4035 34UG South Northamptonshire CD 2004 50 39.77407
## 4036 34UG South Northamptonshire CD 2005 50 37.80211
## 4037 34UG South Northamptonshire CD 2006 45 39.26467
## 4038 34UG South Northamptonshire CD 2007 50 42.76471
## 4039 34UG South Northamptonshire CD 2008 40 42.20130
## 4040 34UG South Northamptonshire CD 2009 40 41.64326
## 4041 34UG South Northamptonshire CD 2010 40 49.46698
## 4042 34UG South Northamptonshire CD 2011 40 47.19312
## 4043 34UG South Northamptonshire CD 2012 50 50.06787
## 4044 34UG South Northamptonshire CD 2013 25 50.86381
## 4045 34UG South Northamptonshire CD 2014 35 56.26820
## 4046 34UG South Northamptonshire CD 2015 35 59.06670
## 4047 34UG South Northamptonshire CD 2016 25 63.76955
## 4048 34UG South Northamptonshire CD 2017 40 63.50514
## 4049 34UH Wellingborough CD 2002 55 33.20709
## 4050 34UH Wellingborough CD 2003 50 35.56310
## 4051 34UH Wellingborough CD 2004 35 34.33120
## 4052 34UH Wellingborough CD 2005 40 35.02624
## 4053 34UH Wellingborough CD 2006 35 35.58142
## 4054 34UH Wellingborough CD 2007 35 39.51739
## 4055 34UH Wellingborough CD 2008 40 36.67385
## 4056 34UH Wellingborough CD 2009 45 36.54342
## 4057 34UH Wellingborough CD 2010 25 39.70421
## 4058 34UH Wellingborough CD 2011 30 39.49830
## 4059 34UH Wellingborough CD 2012 25 40.36754
## 4060 34UH Wellingborough CD 2013 40 46.76788
## 4061 34UH Wellingborough CD 2014 25 43.43540
## 4062 34UH Wellingborough CD 2015 45 48.59222
## 4063 34UH Wellingborough CD 2016 45 48.18014
## 4064 34UH Wellingborough CD 2017 45 47.79309
## 4065 36UB Craven CD 2002 30 37.97831
## 4066 36UB Craven CD 2003 25 37.19214
## 4067 36UB Craven CD 2004 35 41.47555
## 4068 36UB Craven CD 2005 20 44.75171
## 4069 36UB Craven CD 2006 40 40.36289
## 4070 36UB Craven CD 2007 30 42.48382
## 4071 36UB Craven CD 2008 25 48.17131
## 4072 36UB Craven CD 2009 35 42.64388
## 4073 36UB Craven CD 2010 35 45.71201
## 4074 36UB Craven CD 2011 40 47.93978
## 4075 36UB Craven CD 2012 35 50.99708
## 4076 36UB Craven CD 2013 25 46.83822
## 4077 36UB Craven CD 2014 30 54.86362
## 4078 36UB Craven CD 2015 30 50.07980
## 4079 36UB Craven CD 2016 35 52.08005
## 4080 36UB Craven CD 2017 25 58.23636
## 4081 36UC Hambleton CD 2002 65 47.38645
## 4082 36UC Hambleton CD 2003 60 49.04286
## 4083 36UC Hambleton CD 2004 50 48.12829
## 4084 36UC Hambleton CD 2005 50 48.67323
## 4085 36UC Hambleton CD 2006 45 49.80885
## 4086 36UC Hambleton CD 2007 45 56.42715
## 4087 36UC Hambleton CD 2008 50 54.94392
## 4088 36UC Hambleton CD 2009 45 55.43511
## 4089 36UC Hambleton CD 2010 40 60.75213
## 4090 36UC Hambleton CD 2011 30 59.38134
## 4091 36UC Hambleton CD 2012 40 66.59062
## 4092 36UC Hambleton CD 2013 55 67.86738
## 4093 36UC Hambleton CD 2014 50 72.83782
## 4094 36UC Hambleton CD 2015 55 70.78426
## 4095 36UC Hambleton CD 2016 65 75.60672
## 4096 36UC Hambleton CD 2017 40 75.24294
## 4097 36UD Harrogate CD 2002 95 97.32654
## 4098 36UD Harrogate CD 2003 80 95.92879
## 4099 36UD Harrogate CD 2004 115 99.18208
## 4100 36UD Harrogate CD 2005 90 100.73959
## 4101 36UD Harrogate CD 2006 75 106.17737
## 4102 36UD Harrogate CD 2007 100 104.87164
## 4103 36UD Harrogate CD 2008 90 104.88646
## 4104 36UD Harrogate CD 2009 75 105.95260
## 4105 36UD Harrogate CD 2010 80 111.98879
## 4106 36UD Harrogate CD 2011 80 117.83895
## 4107 36UD Harrogate CD 2012 90 119.90300
## 4108 36UD Harrogate CD 2013 70 126.93838
## 4109 36UD Harrogate CD 2014 90 123.93237
## 4110 36UD Harrogate CD 2015 70 128.97446
## 4111 36UD Harrogate CD 2016 80 129.98490
## 4112 36UD Harrogate CD 2017 75 135.25283
## 4113 36UE Richmondshire CD 2002 30 24.43875
## 4114 36UE Richmondshire CD 2003 25 22.33377
## 4115 36UE Richmondshire CD 2004 20 28.17450
## 4116 36UE Richmondshire CD 2005 40 25.78947
## 4117 36UE Richmondshire CD 2006 25 25.47999
## 4118 36UE Richmondshire CD 2007 25 30.23386
## 4119 36UE Richmondshire CD 2008 30 27.15891
## 4120 36UE Richmondshire CD 2009 25 27.04987
## 4121 36UE Richmondshire CD 2010 35 27.99760
## 4122 36UE Richmondshire CD 2011 20 31.08350
## 4123 36UE Richmondshire CD 2012 30 29.29960
## 4124 36UE Richmondshire CD 2013 25 32.98032
## 4125 36UE Richmondshire CD 2014 20 32.99352
## 4126 36UE Richmondshire CD 2015 30 31.19536
## 4127 36UE Richmondshire CD 2016 20 30.21886
## 4128 36UE Richmondshire CD 2017 15 32.67681
## 4129 36UF Ryedale CD 2002 55 35.73507
## 4130 36UF Ryedale CD 2003 35 36.34335
## 4131 36UF Ryedale CD 2004 45 36.19941
## 4132 36UF Ryedale CD 2005 40 35.93332
## 4133 36UF Ryedale CD 2006 50 38.44085
## 4134 36UF Ryedale CD 2007 50 38.33569
## 4135 36UF Ryedale CD 2008 45 38.08611
## 4136 36UF Ryedale CD 2009 45 40.65170
## 4137 36UF Ryedale CD 2010 40 42.34795
## 4138 36UF Ryedale CD 2011 45 42.65913
## 4139 36UF Ryedale CD 2012 35 40.51961
## 4140 36UF Ryedale CD 2013 30 43.54878
## 4141 36UF Ryedale CD 2014 25 40.65799
## 4142 36UF Ryedale CD 2015 45 44.16485
## 4143 36UF Ryedale CD 2016 35 43.61073
## 4144 36UF Ryedale CD 2017 25 44.68749
## 4145 36UG Scarborough CD 2002 70 79.96248
## 4146 36UG Scarborough CD 2003 105 82.97449
## 4147 36UG Scarborough CD 2004 95 82.68101
## 4148 36UG Scarborough CD 2005 90 83.94966
## 4149 36UG Scarborough CD 2006 120 84.49377
## 4150 36UG Scarborough CD 2007 115 81.73291
## 4151 36UG Scarborough CD 2008 105 82.49998
## 4152 36UG Scarborough CD 2009 95 86.08663
## 4153 36UG Scarborough CD 2010 100 86.63450
## 4154 36UG Scarborough CD 2011 110 89.55151
## 4155 36UG Scarborough CD 2012 75 89.83331
## 4156 36UG Scarborough CD 2013 80 90.27456
## 4157 36UG Scarborough CD 2014 80 91.38570
## 4158 36UG Scarborough CD 2015 85 90.70203
## 4159 36UG Scarborough CD 2016 80 96.32440
## 4160 36UG Scarborough CD 2017 65 95.64361
## 4161 36UH Selby CD 2002 45 36.32870
## 4162 36UH Selby CD 2003 45 37.77358
## 4163 36UH Selby CD 2004 45 38.93979
## 4164 36UH Selby CD 2005 40 39.35687
## 4165 36UH Selby CD 2006 45 42.24759
## 4166 36UH Selby CD 2007 55 40.81602
## 4167 36UH Selby CD 2008 40 39.42330
## 4168 36UH Selby CD 2009 40 45.75252
## 4169 36UH Selby CD 2010 45 48.22066
## 4170 36UH Selby CD 2011 45 50.12956
## 4171 36UH Selby CD 2012 50 51.75036
## 4172 36UH Selby CD 2013 35 50.57118
## 4173 36UH Selby CD 2014 35 49.19164
## 4174 36UH Selby CD 2015 40 55.98321
## 4175 36UH Selby CD 2016 35 54.32985
## 4176 36UH Selby CD 2017 35 51.83239
## 4177 37UB Ashfield CD 2002 90 53.83557
## 4178 37UB Ashfield CD 2003 100 53.42940
## 4179 37UB Ashfield CD 2004 65 57.48878
## 4180 37UB Ashfield CD 2005 80 55.87718
## 4181 37UB Ashfield CD 2006 75 58.59347
## 4182 37UB Ashfield CD 2007 65 58.80631
## 4183 37UB Ashfield CD 2008 65 59.01204
## 4184 37UB Ashfield CD 2009 55 58.88684
## 4185 37UB Ashfield CD 2010 60 61.58194
## 4186 37UB Ashfield CD 2011 40 66.04145
## 4187 37UB Ashfield CD 2012 70 67.54198
## 4188 37UB Ashfield CD 2013 60 66.80224
## 4189 37UB Ashfield CD 2014 60 69.49664
## 4190 37UB Ashfield CD 2015 60 70.95096
## 4191 37UB Ashfield CD 2016 60 70.49294
## 4192 37UB Ashfield CD 2017 50 75.75133
## 4193 37UC Bassetlaw CD 2002 50 52.82719
## 4194 37UC Bassetlaw CD 2003 65 56.99598
## 4195 37UC Bassetlaw CD 2004 45 57.69715
## 4196 37UC Bassetlaw CD 2005 50 57.04167
## 4197 37UC Bassetlaw CD 2006 45 58.21915
## 4198 37UC Bassetlaw CD 2007 55 64.09728
## 4199 37UC Bassetlaw CD 2008 65 64.07187
## 4200 37UC Bassetlaw CD 2009 55 61.85954
## 4201 37UC Bassetlaw CD 2010 45 69.34571
## 4202 37UC Bassetlaw CD 2011 60 67.29410
## 4203 37UC Bassetlaw CD 2012 45 73.26941
## 4204 37UC Bassetlaw CD 2013 55 74.99220
## 4205 37UC Bassetlaw CD 2014 45 72.80418
## 4206 37UC Bassetlaw CD 2015 85 74.43540
## 4207 37UC Bassetlaw CD 2016 60 74.60206
## 4208 37UC Bassetlaw CD 2017 55 80.04671
## 4209 37UD Broxtowe CD 2002 75 53.77314
## 4210 37UD Broxtowe CD 2003 90 57.00609
## 4211 37UD Broxtowe CD 2004 65 58.04191
## 4212 37UD Broxtowe CD 2005 55 56.69927
## 4213 37UD Broxtowe CD 2006 65 59.63403
## 4214 37UD Broxtowe CD 2007 45 59.37575
## 4215 37UD Broxtowe CD 2008 55 63.67893
## 4216 37UD Broxtowe CD 2009 60 64.02984
## 4217 37UD Broxtowe CD 2010 50 66.98851
## 4218 37UD Broxtowe CD 2011 40 66.37772
## 4219 37UD Broxtowe CD 2012 60 69.66938
## 4220 37UD Broxtowe CD 2013 40 73.23751
## 4221 37UD Broxtowe CD 2014 35 71.11641
## 4222 37UD Broxtowe CD 2015 55 73.07260
## 4223 37UD Broxtowe CD 2016 45 77.55871
## 4224 37UD Broxtowe CD 2017 35 79.27750
## 4225 37UE Gedling CD 2002 80 62.62189
## 4226 37UE Gedling CD 2003 90 63.12295
## 4227 37UE Gedling CD 2004 80 64.94351
## 4228 37UE Gedling CD 2005 90 63.63571
## 4229 37UE Gedling CD 2006 80 64.70363
## 4230 37UE Gedling CD 2007 50 62.19597
## 4231 37UE Gedling CD 2008 75 64.58857
## 4232 37UE Gedling CD 2009 60 66.88194
## 4233 37UE Gedling CD 2010 55 69.62690
## 4234 37UE Gedling CD 2011 40 72.32097
## 4235 37UE Gedling CD 2012 55 71.33455
## 4236 37UE Gedling CD 2013 45 76.38443
## 4237 37UE Gedling CD 2014 35 77.20603
## 4238 37UE Gedling CD 2015 60 75.04148
## 4239 37UE Gedling CD 2016 50 74.73334
## 4240 37UE Gedling CD 2017 60 76.52346
## 4241 37UF Mansfield CD 2002 55 47.26619
## 4242 37UF Mansfield CD 2003 75 47.84676
## 4243 37UF Mansfield CD 2004 85 51.90369
## 4244 37UF Mansfield CD 2005 70 52.81752
## 4245 37UF Mansfield CD 2006 55 51.17654
## 4246 37UF Mansfield CD 2007 40 57.28767
## 4247 37UF Mansfield CD 2008 50 55.59786
## 4248 37UF Mansfield CD 2009 45 58.84388
## 4249 37UF Mansfield CD 2010 45 60.60252
## 4250 37UF Mansfield CD 2011 50 58.17833
## 4251 37UF Mansfield CD 2012 40 58.97526
## 4252 37UF Mansfield CD 2013 40 61.03657
## 4253 37UF Mansfield CD 2014 35 66.41705
## 4254 37UF Mansfield CD 2015 60 63.87419
## 4255 37UF Mansfield CD 2016 45 66.21481
## 4256 37UF Mansfield CD 2017 50 65.83050
## 4257 37UG Newark and Sherwood CD 2002 65 56.75450
## 4258 37UG Newark and Sherwood CD 2003 60 58.93186
## 4259 37UG Newark and Sherwood CD 2004 50 62.52341
## 4260 37UG Newark and Sherwood CD 2005 70 62.67440
## 4261 37UG Newark and Sherwood CD 2006 55 61.67145
## 4262 37UG Newark and Sherwood CD 2007 60 66.24959
## 4263 37UG Newark and Sherwood CD 2008 65 64.02684
## 4264 37UG Newark and Sherwood CD 2009 60 69.23341
## 4265 37UG Newark and Sherwood CD 2010 60 68.88177
## 4266 37UG Newark and Sherwood CD 2011 50 75.59605
## 4267 37UG Newark and Sherwood CD 2012 55 75.56567
## 4268 37UG Newark and Sherwood CD 2013 55 79.11011
## 4269 37UG Newark and Sherwood CD 2014 45 77.45392
## 4270 37UG Newark and Sherwood CD 2015 50 77.50247
## 4271 37UG Newark and Sherwood CD 2016 70 85.56300
## 4272 37UG Newark and Sherwood CD 2017 55 83.82488
## 4273 37UJ Rushcliffe CD 2002 70 57.46806
## 4274 37UJ Rushcliffe CD 2003 70 59.66304
## 4275 37UJ Rushcliffe CD 2004 50 61.89381
## 4276 37UJ Rushcliffe CD 2005 40 58.70352
## 4277 37UJ Rushcliffe CD 2006 45 59.98572
## 4278 37UJ Rushcliffe CD 2007 50 62.33984
## 4279 37UJ Rushcliffe CD 2008 60 62.89945
## 4280 37UJ Rushcliffe CD 2009 55 67.82557
## 4281 37UJ Rushcliffe CD 2010 45 66.93163
## 4282 37UJ Rushcliffe CD 2011 40 68.55324
## 4283 37UJ Rushcliffe CD 2012 40 77.48961
## 4284 37UJ Rushcliffe CD 2013 45 76.33820
## 4285 37UJ Rushcliffe CD 2014 35 82.20042
## 4286 37UJ Rushcliffe CD 2015 70 84.99955
## 4287 37UJ Rushcliffe CD 2016 45 90.19306
## 4288 37UJ Rushcliffe CD 2017 40 84.11763
## 4289 38UB Cherwell CD 2002 80 60.66337
## 4290 38UB Cherwell CD 2003 110 59.31736
## 4291 38UB Cherwell CD 2004 85 60.53716
## 4292 38UB Cherwell CD 2005 90 64.56410
## 4293 38UB Cherwell CD 2006 55 66.24579
## 4294 38UB Cherwell CD 2007 50 68.09522
## 4295 38UB Cherwell CD 2008 85 70.82405
## 4296 38UB Cherwell CD 2009 90 68.86861
## 4297 38UB Cherwell CD 2010 45 73.75788
## 4298 38UB Cherwell CD 2011 60 73.36531
## 4299 38UB Cherwell CD 2012 65 79.40980
## 4300 38UB Cherwell CD 2013 60 79.74581
## 4301 38UB Cherwell CD 2014 55 80.28016
## 4302 38UB Cherwell CD 2015 75 85.41648
## 4303 38UB Cherwell CD 2016 65 88.18954
## 4304 38UB Cherwell CD 2017 55 94.36457
## 4305 38UC Oxford CD 2002 100 61.36800
## 4306 38UC Oxford CD 2003 90 64.05910
## 4307 38UC Oxford CD 2004 75 62.50296
## 4308 38UC Oxford CD 2005 75 61.69943
## 4309 38UC Oxford CD 2006 90 63.38944
## 4310 38UC Oxford CD 2007 55 65.32501
## 4311 38UC Oxford CD 2008 75 63.68069
## 4312 38UC Oxford CD 2009 70 63.86587
## 4313 38UC Oxford CD 2010 55 64.61853
## 4314 38UC Oxford CD 2011 40 65.60860
## 4315 38UC Oxford CD 2012 45 71.92402
## 4316 38UC Oxford CD 2013 50 70.45042
## 4317 38UC Oxford CD 2014 45 73.32053
## 4318 38UC Oxford CD 2015 40 73.40053
## 4319 38UC Oxford CD 2016 50 73.11142
## 4320 38UC Oxford CD 2017 45 77.66377
## 4321 38UD South Oxfordshire CD 2002 90 67.61336
## 4322 38UD South Oxfordshire CD 2003 70 67.86439
## 4323 38UD South Oxfordshire CD 2004 85 71.72817
## 4324 38UD South Oxfordshire CD 2005 95 74.28052
## 4325 38UD South Oxfordshire CD 2006 70 73.70800
## 4326 38UD South Oxfordshire CD 2007 85 77.48583
## 4327 38UD South Oxfordshire CD 2008 80 79.24788
## 4328 38UD South Oxfordshire CD 2009 75 80.75060
## 4329 38UD South Oxfordshire CD 2010 70 80.66604
## 4330 38UD South Oxfordshire CD 2011 65 89.13012
## 4331 38UD South Oxfordshire CD 2012 70 87.81486
## 4332 38UD South Oxfordshire CD 2013 75 96.32937
## 4333 38UD South Oxfordshire CD 2014 60 99.64918
## 4334 38UD South Oxfordshire CD 2015 60 98.86417
## 4335 38UD South Oxfordshire CD 2016 65 100.48646
## 4336 38UD South Oxfordshire CD 2017 70 100.41762
## 4337 38UE Vale of White Horse CD 2002 75 61.49726
## 4338 38UE Vale of White Horse CD 2003 75 61.13598
## 4339 38UE Vale of White Horse CD 2004 70 62.22517
## 4340 38UE Vale of White Horse CD 2005 90 63.40219
## 4341 38UE Vale of White Horse CD 2006 80 66.67775
## 4342 38UE Vale of White Horse CD 2007 60 67.19730
## 4343 38UE Vale of White Horse CD 2008 55 68.91719
## 4344 38UE Vale of White Horse CD 2009 70 72.77838
## 4345 38UE Vale of White Horse CD 2010 65 77.41224
## 4346 38UE Vale of White Horse CD 2011 60 79.50452
## 4347 38UE Vale of White Horse CD 2012 60 79.19004
## 4348 38UE Vale of White Horse CD 2013 70 82.77612
## 4349 38UE Vale of White Horse CD 2014 55 83.80666
## 4350 38UE Vale of White Horse CD 2015 70 86.54431
## 4351 38UE Vale of White Horse CD 2016 50 89.05692
## 4352 38UE Vale of White Horse CD 2017 55 95.42774
## 4353 38UF West Oxfordshire CD 2002 55 52.30168
## 4354 38UF West Oxfordshire CD 2003 65 56.59934
## 4355 38UF West Oxfordshire CD 2004 80 56.75406
## 4356 38UF West Oxfordshire CD 2005 75 58.62616
## 4357 38UF West Oxfordshire CD 2006 65 63.39410
## 4358 38UF West Oxfordshire CD 2007 60 64.53602
## 4359 38UF West Oxfordshire CD 2008 90 66.18701
## 4360 38UF West Oxfordshire CD 2009 75 66.34996
## 4361 38UF West Oxfordshire CD 2010 55 67.54621
## 4362 38UF West Oxfordshire CD 2011 45 74.13070
## 4363 38UF West Oxfordshire CD 2012 45 71.89942
## 4364 38UF West Oxfordshire CD 2013 50 74.60603
## 4365 38UF West Oxfordshire CD 2014 55 76.85410
## 4366 38UF West Oxfordshire CD 2015 45 78.48536
## 4367 38UF West Oxfordshire CD 2016 40 80.63289
## 4368 38UF West Oxfordshire CD 2017 55 88.58405
## 4369 40UB Mendip CD 2002 80 66.29529
## 4370 40UB Mendip CD 2003 100 63.88875
## 4371 40UB Mendip CD 2004 75 67.58728
## 4372 40UB Mendip CD 2005 90 66.08298
## 4373 40UB Mendip CD 2006 70 69.12202
## 4374 40UB Mendip CD 2007 70 69.02475
## 4375 40UB Mendip CD 2008 90 72.06786
## 4376 40UB Mendip CD 2009 65 76.47635
## 4377 40UB Mendip CD 2010 65 74.15417
## 4378 40UB Mendip CD 2011 65 79.29229
## 4379 40UB Mendip CD 2012 45 85.40491
## 4380 40UB Mendip CD 2013 55 86.14841
## 4381 40UB Mendip CD 2014 60 84.10080
## 4382 40UB Mendip CD 2015 75 85.42342
## 4383 40UB Mendip CD 2016 50 89.30663
## 4384 40UB Mendip CD 2017 55 91.21536
## 4385 40UC Sedgemoor CD 2002 95 68.33640
## 4386 40UC Sedgemoor CD 2003 95 66.81705
## 4387 40UC Sedgemoor CD 2004 85 70.68117
## 4388 40UC Sedgemoor CD 2005 80 73.07520
## 4389 40UC Sedgemoor CD 2006 65 72.44968
## 4390 40UC Sedgemoor CD 2007 70 74.43507
## 4391 40UC Sedgemoor CD 2008 85 78.08520
## 4392 40UC Sedgemoor CD 2009 65 75.77654
## 4393 40UC Sedgemoor CD 2010 100 79.35895
## 4394 40UC Sedgemoor CD 2011 60 83.35876
## 4395 40UC Sedgemoor CD 2012 60 88.78047
## 4396 40UC Sedgemoor CD 2013 55 85.14912
## 4397 40UC Sedgemoor CD 2014 50 93.40174
## 4398 40UC Sedgemoor CD 2015 55 90.77492
## 4399 40UC Sedgemoor CD 2016 50 94.84297
## 4400 40UC Sedgemoor CD 2017 60 97.59051
## 4401 40UD South Somerset CD 2002 110 103.19585
## 4402 40UD South Somerset CD 2003 125 105.61616
## 4403 40UD South Somerset CD 2004 105 103.73420
## 4404 40UD South Somerset CD 2005 90 110.30783
## 4405 40UD South Somerset CD 2006 105 109.99175
## 4406 40UD South Somerset CD 2007 115 111.70788
## 4407 40UD South Somerset CD 2008 105 117.84956
## 4408 40UD South Somerset CD 2009 95 119.39106
## 4409 40UD South Somerset CD 2010 90 126.26486
## 4410 40UD South Somerset CD 2011 75 132.50753
## 4411 40UD South Somerset CD 2012 55 131.35137
## 4412 40UD South Somerset CD 2013 70 138.98835
## 4413 40UD South Somerset CD 2014 55 135.65115
## 4414 40UD South Somerset CD 2015 75 143.37058
## 4415 40UD South Somerset CD 2016 80 147.01282
## 4416 40UD South Somerset CD 2017 90 143.97942
## 4417 40UE Taunton Deane CD 2002 85 68.39236
## 4418 40UE Taunton Deane CD 2003 70 71.34398
## 4419 40UE Taunton Deane CD 2004 65 73.85955
## 4420 40UE Taunton Deane CD 2005 85 74.05594
## 4421 40UE Taunton Deane CD 2006 80 75.96692
## 4422 40UE Taunton Deane CD 2007 95 77.81458
## 4423 40UE Taunton Deane CD 2008 80 80.16587
## 4424 40UE Taunton Deane CD 2009 75 79.78818
## 4425 40UE Taunton Deane CD 2010 65 87.43615
## 4426 40UE Taunton Deane CD 2011 60 86.00182
## 4427 40UE Taunton Deane CD 2012 40 87.91717
## 4428 40UE Taunton Deane CD 2013 65 92.40310
## 4429 40UE Taunton Deane CD 2014 30 89.31802
## 4430 40UE Taunton Deane CD 2015 70 99.64243
## 4431 40UE Taunton Deane CD 2016 75 99.60669
## 4432 40UE Taunton Deane CD 2017 50 102.92301
## 4433 40UF West Somerset CD 2002 25 35.56130
## 4434 40UF West Somerset CD 2003 30 34.48043
## 4435 40UF West Somerset CD 2004 30 34.92440
## 4436 40UF West Somerset CD 2005 30 36.91132
## 4437 40UF West Somerset CD 2006 35 37.01531
## 4438 40UF West Somerset CD 2007 45 38.49529
## 4439 40UF West Somerset CD 2008 30 40.56932
## 4440 40UF West Somerset CD 2009 25 34.33120
## 4441 40UF West Somerset CD 2010 25 37.46257
## 4442 40UF West Somerset CD 2011 15 33.81756
## 4443 40UF West Somerset CD 2012 15 34.92440
## 4444 40UF West Somerset CD 2013 15 35.34723
## 4445 40UF West Somerset CD 2014 20 37.48561
## 4446 40UF West Somerset CD 2015 25 40.62499
## 4447 40UF West Somerset CD 2016 25 38.01952
## 4448 40UF West Somerset CD 2017 15 48.34635
## 4449 41UB Cannock Chase CD 2002 40 35.35317
## 4450 41UB Cannock Chase CD 2003 55 35.50626
## 4451 41UB Cannock Chase CD 2004 35 36.37839
## 4452 41UB Cannock Chase CD 2005 50 38.34199
## 4453 41UB Cannock Chase CD 2006 30 42.81262
## 4454 41UB Cannock Chase CD 2007 30 40.46779
## 4455 41UB Cannock Chase CD 2008 35 42.49241
## 4456 41UB Cannock Chase CD 2009 35 41.89715
## 4457 41UB Cannock Chase CD 2010 25 42.35371
## 4458 41UB Cannock Chase CD 2011 25 46.90093
## 4459 41UB Cannock Chase CD 2012 30 50.33161
## 4460 41UB Cannock Chase CD 2013 35 56.86180
## 4461 41UB Cannock Chase CD 2014 35 51.93667
## 4462 41UB Cannock Chase CD 2015 30 60.21482
## 4463 41UB Cannock Chase CD 2016 40 57.88516
## 4464 41UB Cannock Chase CD 2017 30 56.27358
## 4465 41UC East Staffordshire CD 2002 85 51.90821
## 4466 41UC East Staffordshire CD 2003 75 52.29363
## 4467 41UC East Staffordshire CD 2004 75 51.14100
## 4468 41UC East Staffordshire CD 2005 60 52.10633
## 4469 41UC East Staffordshire CD 2006 60 57.00995
## 4470 41UC East Staffordshire CD 2007 65 56.79343
## 4471 41UC East Staffordshire CD 2008 65 59.38908
## 4472 41UC East Staffordshire CD 2009 50 60.50426
## 4473 41UC East Staffordshire CD 2010 70 61.32657
## 4474 41UC East Staffordshire CD 2011 50 62.83740
## 4475 41UC East Staffordshire CD 2012 35 62.37155
## 4476 41UC East Staffordshire CD 2013 55 66.93034
## 4477 41UC East Staffordshire CD 2014 40 65.77797
## 4478 41UC East Staffordshire CD 2015 65 71.12593
## 4479 41UC East Staffordshire CD 2016 65 73.30086
## 4480 41UC East Staffordshire CD 2017 55 74.74494
## 4481 41UD Lichfield CD 2002 55 47.51972
## 4482 41UD Lichfield CD 2003 60 47.01632
## 4483 41UD Lichfield CD 2004 60 49.60414
## 4484 41UD Lichfield CD 2005 70 51.82691
## 4485 41UD Lichfield CD 2006 50 54.70798
## 4486 41UD Lichfield CD 2007 50 55.98433
## 4487 41UD Lichfield CD 2008 65 54.81794
## 4488 41UD Lichfield CD 2009 50 55.23846
## 4489 41UD Lichfield CD 2010 50 58.99637
## 4490 41UD Lichfield CD 2011 30 61.72660
## 4491 41UD Lichfield CD 2012 50 68.98010
## 4492 41UD Lichfield CD 2013 50 67.26503
## 4493 41UD Lichfield CD 2014 40 71.27271
## 4494 41UD Lichfield CD 2015 45 75.77864
## 4495 41UD Lichfield CD 2016 45 72.09670
## 4496 41UD Lichfield CD 2017 45 75.63323
## 4497 41UE Newcastle-under-Lyme CD 2002 85 61.08039
## 4498 41UE Newcastle-under-Lyme CD 2003 70 64.80247
## 4499 41UE Newcastle-under-Lyme CD 2004 50 66.56216
## 4500 41UE Newcastle-under-Lyme CD 2005 90 68.62131
## 4501 41UE Newcastle-under-Lyme CD 2006 75 69.76766
## 4502 41UE Newcastle-under-Lyme CD 2007 95 69.59382
## 4503 41UE Newcastle-under-Lyme CD 2008 90 68.80099
## 4504 41UE Newcastle-under-Lyme CD 2009 105 72.52191
## 4505 41UE Newcastle-under-Lyme CD 2010 80 73.87452
## 4506 41UE Newcastle-under-Lyme CD 2011 75 73.59262
## 4507 41UE Newcastle-under-Lyme CD 2012 80 75.65932
## 4508 41UE Newcastle-under-Lyme CD 2013 100 79.23780
## 4509 41UE Newcastle-under-Lyme CD 2014 65 79.32681
## 4510 41UE Newcastle-under-Lyme CD 2015 90 82.61887
## 4511 41UE Newcastle-under-Lyme CD 2016 60 81.41361
## 4512 41UE Newcastle-under-Lyme CD 2017 60 87.37814
## 4513 41UF South Staffordshire CD 2002 65 51.16321
## 4514 41UF South Staffordshire CD 2003 75 54.52351
## 4515 41UF South Staffordshire CD 2004 70 57.88857
## 4516 41UF South Staffordshire CD 2005 80 59.28087
## 4517 41UF South Staffordshire CD 2006 75 59.76288
## 4518 41UF South Staffordshire CD 2007 70 62.94788
## 4519 41UF South Staffordshire CD 2008 60 64.92470
## 4520 41UF South Staffordshire CD 2009 45 62.00883
## 4521 41UF South Staffordshire CD 2010 50 65.46761
## 4522 41UF South Staffordshire CD 2011 35 67.33799
## 4523 41UF South Staffordshire CD 2012 45 73.68032
## 4524 41UF South Staffordshire CD 2013 55 74.60747
## 4525 41UF South Staffordshire CD 2014 40 77.81231
## 4526 41UF South Staffordshire CD 2015 50 80.02511
## 4527 41UF South Staffordshire CD 2016 35 90.41288
## 4528 41UF South Staffordshire CD 2017 45 92.39998
## 4529 41UG Stafford CD 2002 95 66.14974
## 4530 41UG Stafford CD 2003 80 67.76185
## 4531 41UG Stafford CD 2004 75 70.29493
## 4532 41UG Stafford CD 2005 75 73.76823
## 4533 41UG Stafford CD 2006 65 73.81765
## 4534 41UG Stafford CD 2007 75 78.92541
## 4535 41UG Stafford CD 2008 85 77.12961
## 4536 41UG Stafford CD 2009 70 81.87112
## 4537 41UG Stafford CD 2010 55 80.96322
## 4538 41UG Stafford CD 2011 55 89.89618
## 4539 41UG Stafford CD 2012 70 89.62812
## 4540 41UG Stafford CD 2013 60 89.28008
## 4541 41UG Stafford CD 2014 75 93.76001
## 4542 41UG Stafford CD 2015 80 92.14430
## 4543 41UG Stafford CD 2016 90 93.78790
## 4544 41UG Stafford CD 2017 55 100.87290
## 4545 41UH Staffordshire Moorlands CD 2002 60 52.44432
## 4546 41UH Staffordshire Moorlands CD 2003 70 50.99708
## 4547 41UH Staffordshire Moorlands CD 2004 55 54.94510
## 4548 41UH Staffordshire Moorlands CD 2005 70 54.90763
## 4549 41UH Staffordshire Moorlands CD 2006 65 56.42055
## 4550 41UH Staffordshire Moorlands CD 2007 65 58.06041
## 4551 41UH Staffordshire Moorlands CD 2008 90 59.48496
## 4552 41UH Staffordshire Moorlands CD 2009 60 59.87182
## 4553 41UH Staffordshire Moorlands CD 2010 75 62.88439
## 4554 41UH Staffordshire Moorlands CD 2011 50 67.62859
## 4555 41UH Staffordshire Moorlands CD 2012 75 67.70483
## 4556 41UH Staffordshire Moorlands CD 2013 70 69.48925
## 4557 41UH Staffordshire Moorlands CD 2014 60 69.38767
## 4558 41UH Staffordshire Moorlands CD 2015 75 71.51458
## 4559 41UH Staffordshire Moorlands CD 2016 65 74.81805
## 4560 41UH Staffordshire Moorlands CD 2017 50 73.57201
## 4561 41UK Tamworth CD 2002 25 21.65327
## 4562 41UK Tamworth CD 2003 30 25.01755
## 4563 41UK Tamworth CD 2004 25 22.84493
## 4564 41UK Tamworth CD 2005 35 24.16921
## 4565 41UK Tamworth CD 2006 45 27.71390
## 4566 41UK Tamworth CD 2007 25 29.13997
## 4567 41UK Tamworth CD 2008 25 27.46981
## 4568 41UK Tamworth CD 2009 25 32.89053
## 4569 41UK Tamworth CD 2010 20 32.68952
## 4570 41UK Tamworth CD 2011 30 33.05188
## 4571 41UK Tamworth CD 2012 20 32.47740
## 4572 41UK Tamworth CD 2013 30 38.10913
## 4573 41UK Tamworth CD 2014 30 35.11986
## 4574 41UK Tamworth CD 2015 30 39.84267
## 4575 41UK Tamworth CD 2016 25 44.09136
## 4576 41UK Tamworth CD 2017 25 44.05255
## 4577 42UB Babergh CD 2002 65 52.22208
## 4578 42UB Babergh CD 2003 75 53.80066
## 4579 42UB Babergh CD 2004 80 56.55366
## 4580 42UB Babergh CD 2005 80 56.85768
## 4581 42UB Babergh CD 2006 65 59.84953
## 4582 42UB Babergh CD 2007 45 59.44291
## 4583 42UB Babergh CD 2008 60 60.22345
## 4584 42UB Babergh CD 2009 65 62.88208
## 4585 42UB Babergh CD 2010 45 61.59698
## 4586 42UB Babergh CD 2011 40 69.73005
## 4587 42UB Babergh CD 2012 45 71.06489
## 4588 42UB Babergh CD 2013 55 75.32198
## 4589 42UB Babergh CD 2014 45 74.75461
## 4590 42UB Babergh CD 2015 65 81.00576
## 4591 42UB Babergh CD 2016 45 78.72049
## 4592 42UB Babergh CD 2017 45 83.61573
## 4593 42UC Forest Heath CD 2002 40 26.57563
## 4594 42UC Forest Heath CD 2003 45 27.40558
## 4595 42UC Forest Heath CD 2004 35 27.84975
## 4596 42UC Forest Heath CD 2005 40 29.43189
## 4597 42UC Forest Heath CD 2006 20 29.28429
## 4598 42UC Forest Heath CD 2007 30 31.74418
## 4599 42UC Forest Heath CD 2008 35 32.46987
## 4600 42UC Forest Heath CD 2009 25 31.56874
## 4601 42UC Forest Heath CD 2010 25 33.14255
## 4602 42UC Forest Heath CD 2011 30 35.84754
## 4603 42UC Forest Heath CD 2012 20 35.18894
## 4604 42UC Forest Heath CD 2013 25 37.78172
## 4605 42UC Forest Heath CD 2014 20 35.74999
## 4606 42UC Forest Heath CD 2015 25 37.16452
## 4607 42UC Forest Heath CD 2016 25 44.74456
## 4608 42UC Forest Heath CD 2017 10 35.27308
## 4609 42UD Ipswich CD 2002 80 68.55743
## 4610 42UD Ipswich CD 2003 110 66.38272
## 4611 42UD Ipswich CD 2004 100 66.54003
## 4612 42UD Ipswich CD 2005 95 69.45947
## 4613 42UD Ipswich CD 2006 100 68.72975
## 4614 42UD Ipswich CD 2007 65 72.43239
## 4615 42UD Ipswich CD 2008 65 72.83782
## 4616 42UD Ipswich CD 2009 65 73.03638
## 4617 42UD Ipswich CD 2010 60 75.37108
## 4618 42UD Ipswich CD 2011 55 77.76913
## 4619 42UD Ipswich CD 2012 75 78.96099
## 4620 42UD Ipswich CD 2013 60 79.53460
## 4621 42UD Ipswich CD 2014 65 81.48401
## 4622 42UD Ipswich CD 2015 75 83.92955
## 4623 42UD Ipswich CD 2016 70 83.07755
## 4624 42UD Ipswich CD 2017 65 84.97293
## 4625 42UE Mid Suffolk CD 2002 70 50.69139
## 4626 42UE Mid Suffolk CD 2003 80 50.81908
## 4627 42UE Mid Suffolk CD 2004 75 51.75545
## 4628 42UE Mid Suffolk CD 2005 60 55.20582
## 4629 42UE Mid Suffolk CD 2006 65 58.90138
## 4630 42UE Mid Suffolk CD 2007 50 61.13242
## 4631 42UE Mid Suffolk CD 2008 50 58.49890
## 4632 42UE Mid Suffolk CD 2009 35 60.19758
## 4633 42UE Mid Suffolk CD 2010 45 64.67335
## 4634 42UE Mid Suffolk CD 2011 40 68.78879
## 4635 42UE Mid Suffolk CD 2012 35 69.76104
## 4636 42UE Mid Suffolk CD 2013 65 73.25370
## 4637 42UE Mid Suffolk CD 2014 35 72.32231
## 4638 42UE Mid Suffolk CD 2015 60 73.81615
## 4639 42UE Mid Suffolk CD 2016 45 76.84985
## 4640 42UE Mid Suffolk CD 2017 35 75.58790
## 4641 42UF St Edmundsbury CD 2002 70 52.78057
## 4642 42UF St Edmundsbury CD 2003 80 54.87884
## 4643 42UF St Edmundsbury CD 2004 60 56.25475
## 4644 42UF St Edmundsbury CD 2005 85 60.07311
## 4645 42UF St Edmundsbury CD 2006 80 62.16356
## 4646 42UF St Edmundsbury CD 2007 65 65.86953
## 4647 42UF St Edmundsbury CD 2008 60 65.75739
## 4648 42UF St Edmundsbury CD 2009 50 69.99998
## 4649 42UF St Edmundsbury CD 2010 55 74.20524
## 4650 42UF St Edmundsbury CD 2011 40 80.12577
## 4651 42UF St Edmundsbury CD 2012 50 78.33425
## 4652 42UF St Edmundsbury CD 2013 50 83.19875
## 4653 42UF St Edmundsbury CD 2014 35 83.97361
## 4654 42UF St Edmundsbury CD 2015 60 84.34545
## 4655 42UF St Edmundsbury CD 2016 35 90.63006
## 4656 42UF St Edmundsbury CD 2017 40 88.02762
## 4657 42UG Suffolk Coastal CD 2002 90 82.12930
## 4658 42UG Suffolk Coastal CD 2003 115 85.35164
## 4659 42UG Suffolk Coastal CD 2004 90 89.49547
## 4660 42UG Suffolk Coastal CD 2005 105 92.26093
## 4661 42UG Suffolk Coastal CD 2006 95 94.02710
## 4662 42UG Suffolk Coastal CD 2007 65 94.28732
## 4663 42UG Suffolk Coastal CD 2008 80 96.19217
## 4664 42UG Suffolk Coastal CD 2009 75 97.47285
## 4665 42UG Suffolk Coastal CD 2010 80 102.48832
## 4666 42UG Suffolk Coastal CD 2011 55 110.58390
## 4667 42UG Suffolk Coastal CD 2012 80 113.23298
## 4668 42UG Suffolk Coastal CD 2013 85 116.48638
## 4669 42UG Suffolk Coastal CD 2014 80 117.30875
## 4670 42UG Suffolk Coastal CD 2015 105 120.83016
## 4671 42UG Suffolk Coastal CD 2016 85 124.04350
## 4672 42UG Suffolk Coastal CD 2017 95 128.03709
## 4673 42UH Waveney CD 2002 135 82.09545
## 4674 42UH Waveney CD 2003 100 83.25806
## 4675 42UH Waveney CD 2004 90 88.08295
## 4676 42UH Waveney CD 2005 90 87.90491
## 4677 42UH Waveney CD 2006 80 90.72750
## 4678 42UH Waveney CD 2007 60 91.83484
## 4679 42UH Waveney CD 2008 75 90.32741
## 4680 42UH Waveney CD 2009 70 93.55138
## 4681 42UH Waveney CD 2010 60 103.30996
## 4682 42UH Waveney CD 2011 70 99.02885
## 4683 42UH Waveney CD 2012 75 105.31561
## 4684 42UH Waveney CD 2013 60 110.50595
## 4685 42UH Waveney CD 2014 60 110.91410
## 4686 42UH Waveney CD 2015 75 107.97717
## 4687 42UH Waveney CD 2016 65 111.33094
## 4688 42UH Waveney CD 2017 65 112.38862
## 4689 43UB Elmbridge CD 2002 110 76.02405
## 4690 43UB Elmbridge CD 2003 115 73.74100
## 4691 43UB Elmbridge CD 2004 95 74.01210
## 4692 43UB Elmbridge CD 2005 105 77.66651
## 4693 43UB Elmbridge CD 2006 85 81.44330
## 4694 43UB Elmbridge CD 2007 90 81.57685
## 4695 43UB Elmbridge CD 2008 90 84.18500
## 4696 43UB Elmbridge CD 2009 90 85.25481
## 4697 43UB Elmbridge CD 2010 80 87.76575
## 4698 43UB Elmbridge CD 2011 85 91.16015
## 4699 43UB Elmbridge CD 2012 100 92.51995
## 4700 43UB Elmbridge CD 2013 70 93.86468
## 4701 43UB Elmbridge CD 2014 75 99.36186
## 4702 43UB Elmbridge CD 2015 75 98.18307
## 4703 43UB Elmbridge CD 2016 70 100.02853
## 4704 43UB Elmbridge CD 2017 70 101.15279
## 4705 43UC Epsom and Ewell CD 2002 60 42.45808
## 4706 43UC Epsom and Ewell CD 2003 55 40.49650
## 4707 43UC Epsom and Ewell CD 2004 70 43.71957
## 4708 43UC Epsom and Ewell CD 2005 55 42.75641
## 4709 43UC Epsom and Ewell CD 2006 85 44.32994
## 4710 43UC Epsom and Ewell CD 2007 75 45.80336
## 4711 43UC Epsom and Ewell CD 2008 55 45.37944
## 4712 43UC Epsom and Ewell CD 2009 70 44.34208
## 4713 43UC Epsom and Ewell CD 2010 50 45.31168
## 4714 43UC Epsom and Ewell CD 2011 55 49.42416
## 4715 43UC Epsom and Ewell CD 2012 55 47.59895
## 4716 43UC Epsom and Ewell CD 2013 50 50.05356
## 4717 43UC Epsom and Ewell CD 2014 40 49.16329
## 4718 43UC Epsom and Ewell CD 2015 50 50.85643
## 4719 43UC Epsom and Ewell CD 2016 40 50.77075
## 4720 43UC Epsom and Ewell CD 2017 40 51.65498
## 4721 43UD Guildford CD 2002 85 67.67354
## 4722 43UD Guildford CD 2003 95 70.15121
## 4723 43UD Guildford CD 2004 80 70.13135
## 4724 43UD Guildford CD 2005 80 72.13484
## 4725 43UD Guildford CD 2006 75 73.52055
## 4726 43UD Guildford CD 2007 70 72.56841
## 4727 43UD Guildford CD 2008 75 72.52620
## 4728 43UD Guildford CD 2009 60 74.54254
## 4729 43UD Guildford CD 2010 70 80.40818
## 4730 43UD Guildford CD 2011 75 81.03699
## 4731 43UD Guildford CD 2012 85 86.32435
## 4732 43UD Guildford CD 2013 65 88.67891
## 4733 43UD Guildford CD 2014 70 88.56006
## 4734 43UD Guildford CD 2015 60 87.07050
## 4735 43UD Guildford CD 2016 65 90.71000
## 4736 43UD Guildford CD 2017 80 91.54987
## 4737 43UE Mole Valley CD 2002 90 54.85169
## 4738 43UE Mole Valley CD 2003 75 54.65962
## 4739 43UE Mole Valley CD 2004 100 58.32118
## 4740 43UE Mole Valley CD 2005 110 58.18228
## 4741 43UE Mole Valley CD 2006 105 57.98210
## 4742 43UE Mole Valley CD 2007 100 60.50948
## 4743 43UE Mole Valley CD 2008 95 61.59856
## 4744 43UE Mole Valley CD 2009 85 61.77729
## 4745 43UE Mole Valley CD 2010 70 64.18764
## 4746 43UE Mole Valley CD 2011 95 68.10219
## 4747 43UE Mole Valley CD 2012 85 69.45713
## 4748 43UE Mole Valley CD 2013 75 68.38320
## 4749 43UE Mole Valley CD 2014 60 71.57911
## 4750 43UE Mole Valley CD 2015 80 76.23553
## 4751 43UE Mole Valley CD 2016 60 78.78195
## 4752 43UE Mole Valley CD 2017 60 74.78120
## 4753 43UF Reigate and Banstead CD 2002 150 74.36322
## 4754 43UF Reigate and Banstead CD 2003 165 75.54098
## 4755 43UF Reigate and Banstead CD 2004 145 77.35466
## 4756 43UF Reigate and Banstead CD 2005 145 76.81079
## 4757 43UF Reigate and Banstead CD 2006 135 78.71394
## 4758 43UF Reigate and Banstead CD 2007 145 82.77106
## 4759 43UF Reigate and Banstead CD 2008 145 81.74221
## 4760 43UF Reigate and Banstead CD 2009 120 84.97194
## 4761 43UF Reigate and Banstead CD 2010 130 88.31352
## 4762 43UF Reigate and Banstead CD 2011 105 93.74209
## 4763 43UF Reigate and Banstead CD 2012 125 97.00147
## 4764 43UF Reigate and Banstead CD 2013 100 98.77359
## 4765 43UF Reigate and Banstead CD 2014 115 103.48078
## 4766 43UF Reigate and Banstead CD 2015 115 100.89586
## 4767 43UF Reigate and Banstead CD 2016 100 106.74078
## 4768 43UF Reigate and Banstead CD 2017 105 104.19697
## 4769 43UG Runnymede CD 2002 50 43.37624
## 4770 43UG Runnymede CD 2003 55 45.18259
## 4771 43UG Runnymede CD 2004 80 45.39498
## 4772 43UG Runnymede CD 2005 60 45.53695
## 4773 43UG Runnymede CD 2006 60 47.73702
## 4774 43UG Runnymede CD 2007 45 46.47578
## 4775 43UG Runnymede CD 2008 55 47.71387
## 4776 43UG Runnymede CD 2009 55 51.86876
## 4777 43UG Runnymede CD 2010 50 49.74088
## 4778 43UG Runnymede CD 2011 65 53.25401
## 4779 43UG Runnymede CD 2012 55 53.97926
## 4780 43UG Runnymede CD 2013 55 52.54413
## 4781 43UG Runnymede CD 2014 45 53.87696
## 4782 43UG Runnymede CD 2015 55 59.25808
## 4783 43UG Runnymede CD 2016 55 57.34468
## 4784 43UG Runnymede CD 2017 55 58.57359
## 4785 43UH Spelthorne CD 2002 40 44.33757
## 4786 43UH Spelthorne CD 2003 45 44.95828
## 4787 43UH Spelthorne CD 2004 50 49.73029
## 4788 43UH Spelthorne CD 2005 75 50.54339
## 4789 43UH Spelthorne CD 2006 45 49.63635
## 4790 43UH Spelthorne CD 2007 45 51.98927
## 4791 43UH Spelthorne CD 2008 45 51.59370
## 4792 43UH Spelthorne CD 2009 60 56.96747
## 4793 43UH Spelthorne CD 2010 50 57.87560
## 4794 43UH Spelthorne CD 2011 60 60.05141
## 4795 43UH Spelthorne CD 2012 50 61.57833
## 4796 43UH Spelthorne CD 2013 70 62.20544
## 4797 43UH Spelthorne CD 2014 55 67.49298
## 4798 43UH Spelthorne CD 2015 55 64.10794
## 4799 43UH Spelthorne CD 2016 35 65.74931
## 4800 43UH Spelthorne CD 2017 50 64.73576
## 4801 43UJ Surrey Heath CD 2002 55 33.61990
## 4802 43UJ Surrey Heath CD 2003 60 36.62673
## 4803 43UJ Surrey Heath CD 2004 40 35.36655
## 4804 43UJ Surrey Heath CD 2005 70 38.33599
## 4805 43UJ Surrey Heath CD 2006 40 36.84742
## 4806 43UJ Surrey Heath CD 2007 50 42.84578
## 4807 43UJ Surrey Heath CD 2008 55 42.75404
## 4808 43UJ Surrey Heath CD 2009 40 42.53110
## 4809 43UJ Surrey Heath CD 2010 45 48.35748
## 4810 43UJ Surrey Heath CD 2011 40 52.54099
## 4811 43UJ Surrey Heath CD 2012 50 50.48633
## 4812 43UJ Surrey Heath CD 2013 40 53.31050
## 4813 43UJ Surrey Heath CD 2014 40 58.37341
## 4814 43UJ Surrey Heath CD 2015 55 58.03116
## 4815 43UJ Surrey Heath CD 2016 45 58.13328
## 4816 43UJ Surrey Heath CD 2017 35 61.99316
## 4817 43UK Tandridge CD 2002 75 47.07106
## 4818 43UK Tandridge CD 2003 70 49.03183
## 4819 43UK Tandridge CD 2004 60 47.70181
## 4820 43UK Tandridge CD 2005 80 50.45543
## 4821 43UK Tandridge CD 2006 80 51.74080
## 4822 43UK Tandridge CD 2007 55 51.21734
## 4823 43UK Tandridge CD 2008 60 54.28976
## 4824 43UK Tandridge CD 2009 75 54.71937
## 4825 43UK Tandridge CD 2010 75 57.17509
## 4826 43UK Tandridge CD 2011 80 59.36248
## 4827 43UK Tandridge CD 2012 75 61.40027
## 4828 43UK Tandridge CD 2013 70 62.71046
## 4829 43UK Tandridge CD 2014 60 61.78557
## 4830 43UK Tandridge CD 2015 65 65.72695
## 4831 43UK Tandridge CD 2016 65 66.23835
## 4832 43UK Tandridge CD 2017 75 71.31563
## 4833 43UL Waverley CD 2002 100 77.60547
## 4834 43UL Waverley CD 2003 95 78.73963
## 4835 43UL Waverley CD 2004 95 80.71600
## 4836 43UL Waverley CD 2005 105 81.47672
## 4837 43UL Waverley CD 2006 90 84.19062
## 4838 43UL Waverley CD 2007 75 88.32351
## 4839 43UL Waverley CD 2008 95 87.17455
## 4840 43UL Waverley CD 2009 90 91.59475
## 4841 43UL Waverley CD 2010 90 92.13673
## 4842 43UL Waverley CD 2011 75 96.04768
## 4843 43UL Waverley CD 2012 90 98.82157
## 4844 43UL Waverley CD 2013 105 98.16342
## 4845 43UL Waverley CD 2014 85 102.83948
## 4846 43UL Waverley CD 2015 105 105.11248
## 4847 43UL Waverley CD 2016 85 104.71077
## 4848 43UL Waverley CD 2017 75 109.33629
## 4849 43UM Woking CD 2002 55 44.54544
## 4850 43UM Woking CD 2003 60 48.87183
## 4851 43UM Woking CD 2004 75 46.97639
## 4852 43UM Woking CD 2005 60 46.59683
## 4853 43UM Woking CD 2006 65 47.85698
## 4854 43UM Woking CD 2007 55 48.89741
## 4855 43UM Woking CD 2008 70 50.18826
## 4856 43UM Woking CD 2009 55 54.16513
## 4857 43UM Woking CD 2010 50 55.73052
## 4858 43UM Woking CD 2011 60 59.42751
## 4859 43UM Woking CD 2012 50 58.60164
## 4860 43UM Woking CD 2013 40 56.92119
## 4861 43UM Woking CD 2014 50 61.08978
## 4862 43UM Woking CD 2015 45 66.52915
## 4863 43UM Woking CD 2016 50 65.91100
## 4864 43UM Woking CD 2017 45 65.67009
## 4865 44UB North Warwickshire CD 2002 40 27.25928
## 4866 44UB North Warwickshire CD 2003 50 29.18488
## 4867 44UB North Warwickshire CD 2004 50 30.64776
## 4868 44UB North Warwickshire CD 2005 35 30.65562
## 4869 44UB North Warwickshire CD 2006 35 30.22119
## 4870 44UB North Warwickshire CD 2007 35 31.80043
## 4871 44UB North Warwickshire CD 2008 30 30.45638
## 4872 44UB North Warwickshire CD 2009 25 33.65513
## 4873 44UB North Warwickshire CD 2010 40 32.98575
## 4874 44UB North Warwickshire CD 2011 40 37.18227
## 4875 44UB North Warwickshire CD 2012 25 34.68468
## 4876 44UB North Warwickshire CD 2013 30 37.84158
## 4877 44UB North Warwickshire CD 2014 30 44.28269
## 4878 44UB North Warwickshire CD 2015 35 41.07955
## 4879 44UB North Warwickshire CD 2016 40 44.72671
## 4880 44UB North Warwickshire CD 2017 50 46.19593
## 4881 44UC Nuneaton and Bedworth CD 2002 95 53.28303
## 4882 44UC Nuneaton and Bedworth CD 2003 95 52.71758
## 4883 44UC Nuneaton and Bedworth CD 2004 80 53.99604
## 4884 44UC Nuneaton and Bedworth CD 2005 75 56.85038
## 4885 44UC Nuneaton and Bedworth CD 2006 70 55.69951
## 4886 44UC Nuneaton and Bedworth CD 2007 40 61.78330
## 4887 44UC Nuneaton and Bedworth CD 2008 40 60.57487
## 4888 44UC Nuneaton and Bedworth CD 2009 45 64.14707
## 4889 44UC Nuneaton and Bedworth CD 2010 55 64.06532
## 4890 44UC Nuneaton and Bedworth CD 2011 55 65.02192
## 4891 44UC Nuneaton and Bedworth CD 2012 55 68.98504
## 4892 44UC Nuneaton and Bedworth CD 2013 65 68.79983
## 4893 44UC Nuneaton and Bedworth CD 2014 40 68.78035
## 4894 44UC Nuneaton and Bedworth CD 2015 65 74.94116
## 4895 44UC Nuneaton and Bedworth CD 2016 75 72.61138
## 4896 44UC Nuneaton and Bedworth CD 2017 55 73.87806
## 4897 44UD Rugby CD 2002 65 48.71696
## 4898 44UD Rugby CD 2003 65 49.12419
## 4899 44UD Rugby CD 2004 60 49.37983
## 4900 44UD Rugby CD 2005 45 51.57261
## 4901 44UD Rugby CD 2006 40 53.33586
## 4902 44UD Rugby CD 2007 45 54.84692
## 4903 44UD Rugby CD 2008 65 57.32237
## 4904 44UD Rugby CD 2009 50 60.14075
## 4905 44UD Rugby CD 2010 55 59.23986
## 4906 44UD Rugby CD 2011 40 59.00630
## 4907 44UD Rugby CD 2012 55 66.87808
## 4908 44UD Rugby CD 2013 50 64.76567
## 4909 44UD Rugby CD 2014 35 65.16406
## 4910 44UD Rugby CD 2015 55 72.10195
## 4911 44UD Rugby CD 2016 50 74.91712
## 4912 44UD Rugby CD 2017 30 78.86323
## 4913 44UE Stratford-on-Avon CD 2002 85 68.40414
## 4914 44UE Stratford-on-Avon CD 2003 85 69.37218
## 4915 44UE Stratford-on-Avon CD 2004 100 71.78198
## 4916 44UE Stratford-on-Avon CD 2005 80 76.41220
## 4917 44UE Stratford-on-Avon CD 2006 80 79.28150
## 4918 44UE Stratford-on-Avon CD 2007 95 79.94054
## 4919 44UE Stratford-on-Avon CD 2008 70 79.45086
## 4920 44UE Stratford-on-Avon CD 2009 70 81.91214
## 4921 44UE Stratford-on-Avon CD 2010 65 89.85103
## 4922 44UE Stratford-on-Avon CD 2011 60 89.99677
## 4923 44UE Stratford-on-Avon CD 2012 50 95.15207
## 4924 44UE Stratford-on-Avon CD 2013 65 103.79555
## 4925 44UE Stratford-on-Avon CD 2014 65 109.45804
## 4926 44UE Stratford-on-Avon CD 2015 75 108.55709
## 4927 44UE Stratford-on-Avon CD 2016 65 110.29299
## 4928 44UE Stratford-on-Avon CD 2017 60 111.57641
## 4929 44UF Warwick CD 2002 105 71.92285
## 4930 44UF Warwick CD 2003 95 70.91348
## 4931 44UF Warwick CD 2004 75 72.38136
## 4932 44UF Warwick CD 2005 85 74.00073
## 4933 44UF Warwick CD 2006 55 74.93387
## 4934 44UF Warwick CD 2007 80 78.91319
## 4935 44UF Warwick CD 2008 60 79.79879
## 4936 44UF Warwick CD 2009 80 78.74691
## 4937 44UF Warwick CD 2010 60 81.53993
## 4938 44UF Warwick CD 2011 45 87.40538
## 4939 44UF Warwick CD 2012 60 88.08295
## 4940 44UF Warwick CD 2013 65 90.15338
## 4941 44UF Warwick CD 2014 60 93.01325
## 4942 44UF Warwick CD 2015 50 90.43622
## 4943 44UF Warwick CD 2016 70 95.86434
## 4944 44UF Warwick CD 2017 50 98.23354
## 4945 45UB Adur CD 2002 45 45.95423
## 4946 45UB Adur CD 2003 60 45.66059
## 4947 45UB Adur CD 2004 55 46.69917
## 4948 45UB Adur CD 2005 60 48.69635
## 4949 45UB Adur CD 2006 40 50.61032
## 4950 45UB Adur CD 2007 50 46.71955
## 4951 45UB Adur CD 2008 60 47.28335
## 4952 45UB Adur CD 2009 55 49.19703
## 4953 45UB Adur CD 2010 40 45.82733
## 4954 45UB Adur CD 2011 25 47.17882
## 4955 45UB Adur CD 2012 40 50.31956
## 4956 45UB Adur CD 2013 30 50.53124
## 4957 45UB Adur CD 2014 35 50.70187
## 4958 45UB Adur CD 2015 40 51.99999
## 4959 45UB Adur CD 2016 40 54.89227
## 4960 45UB Adur CD 2017 45 51.82265
## 4961 45UC Arun CD 2002 195 142.16675
## 4962 45UC Arun CD 2003 190 142.75463
## 4963 45UC Arun CD 2004 195 144.60416
## 4964 45UC Arun CD 2005 205 147.25112
## 4965 45UC Arun CD 2006 170 148.92664
## 4966 45UC Arun CD 2007 160 148.80803
## 4967 45UC Arun CD 2008 150 148.88445
## 4968 45UC Arun CD 2009 155 153.14224
## 4969 45UC Arun CD 2010 150 154.54341
## 4970 45UC Arun CD 2011 130 159.83678
## 4971 45UC Arun CD 2012 125 160.41663
## 4972 45UC Arun CD 2013 130 161.00924
## 4973 45UC Arun CD 2014 120 169.16604
## 4974 45UC Arun CD 2015 125 166.96050
## 4975 45UC Arun CD 2016 125 168.68075
## 4976 45UC Arun CD 2017 115 172.47534
## 4977 45UD Chichester CD 2002 140 89.05854
## 4978 45UD Chichester CD 2003 120 88.79922
## 4979 45UD Chichester CD 2004 155 89.68125
## 4980 45UD Chichester CD 2005 120 92.73116
## 4981 45UD Chichester CD 2006 95 96.83806
## 4982 45UD Chichester CD 2007 120 95.59343
## 4983 45UD Chichester CD 2008 125 97.59051
## 4984 45UD Chichester CD 2009 120 97.26313
## 4985 45UD Chichester CD 2010 100 99.82190
## 4986 45UD Chichester CD 2011 110 109.01978
## 4987 45UD Chichester CD 2012 85 108.68519
## 4988 45UD Chichester CD 2013 100 114.60580
## 4989 45UD Chichester CD 2014 65 118.76268
## 4990 45UD Chichester CD 2015 95 119.82087
## 4991 45UD Chichester CD 2016 95 118.35094
## 4992 45UD Chichester CD 2017 65 122.10587
## 4993 45UE Crawley CD 2002 45 42.74297
## 4994 45UE Crawley CD 2003 55 43.27736
## 4995 45UE Crawley CD 2004 35 42.77404
## 4996 45UE Crawley CD 2005 65 44.27050
## 4997 45UE Crawley CD 2006 35 46.69553
## 4998 45UE Crawley CD 2007 40 49.29732
## 4999 45UE Crawley CD 2008 45 51.59793
## 5000 45UE Crawley CD 2009 55 51.77817
## 5001 45UE Crawley CD 2010 50 51.34461
## 5002 45UE Crawley CD 2011 45 49.65198
## 5003 45UE Crawley CD 2012 60 54.43386
## 5004 45UE Crawley CD 2013 55 55.41917
## 5005 45UE Crawley CD 2014 40 52.48688
## 5006 45UE Crawley CD 2015 40 53.38665
## 5007 45UE Crawley CD 2016 45 56.74704
## 5008 45UE Crawley CD 2017 45 60.19183
## 5009 45UF Horsham CD 2002 80 74.85609
## 5010 45UF Horsham CD 2003 90 73.22262
## 5011 45UF Horsham CD 2004 55 75.31462
## 5012 45UF Horsham CD 2005 75 79.15723
## 5013 45UF Horsham CD 2006 90 79.03125
## 5014 45UF Horsham CD 2007 70 80.54021
## 5015 45UF Horsham CD 2008 80 84.06717
## 5016 45UF Horsham CD 2009 105 87.47813
## 5017 45UF Horsham CD 2010 75 92.17309
## 5018 45UF Horsham CD 2011 70 93.92759
## 5019 45UF Horsham CD 2012 70 99.83511
## 5020 45UF Horsham CD 2013 70 102.87120
## 5021 45UF Horsham CD 2014 70 105.96023
## 5022 45UF Horsham CD 2015 85 104.48116
## 5023 45UF Horsham CD 2016 70 108.91304
## 5024 45UF Horsham CD 2017 70 115.36867
## 5025 45UG Mid Sussex CD 2002 100 75.18239
## 5026 45UG Mid Sussex CD 2003 100 77.32287
## 5027 45UG Mid Sussex CD 2004 110 77.44874
## 5028 45UG Mid Sussex CD 2005 95 79.18454
## 5029 45UG Mid Sussex CD 2006 65 84.70428
## 5030 45UG Mid Sussex CD 2007 85 87.22830
## 5031 45UG Mid Sussex CD 2008 80 83.89731
## 5032 45UG Mid Sussex CD 2009 95 89.05811
## 5033 45UG Mid Sussex CD 2010 70 93.25789
## 5034 45UG Mid Sussex CD 2011 85 98.88674
## 5035 45UG Mid Sussex CD 2012 75 97.88133
## 5036 45UG Mid Sussex CD 2013 80 106.73265
## 5037 45UG Mid Sussex CD 2014 70 109.85216
## 5038 45UG Mid Sussex CD 2015 80 110.45515
## 5039 45UG Mid Sussex CD 2016 95 114.90848
## 5040 45UG Mid Sussex CD 2017 85 114.86883
## 5041 45UH Worthing CD 2002 120 102.60400
## 5042 45UH Worthing CD 2003 145 98.47490
## 5043 45UH Worthing CD 2004 120 98.06856
## 5044 45UH Worthing CD 2005 105 100.28417
## 5045 45UH Worthing CD 2006 120 98.52822
## 5046 45UH Worthing CD 2007 95 95.73090
## 5047 45UH Worthing CD 2008 90 92.32558
## 5048 45UH Worthing CD 2009 85 93.94241
## 5049 45UH Worthing CD 2010 90 96.45608
## 5050 45UH Worthing CD 2011 60 92.70560
## 5051 45UH Worthing CD 2012 55 95.23907
## 5052 45UH Worthing CD 2013 75 101.92492
## 5053 45UH Worthing CD 2014 60 101.18409
## 5054 45UH Worthing CD 2015 70 103.04409
## 5055 45UH Worthing CD 2016 80 103.11992
## 5056 45UH Worthing CD 2017 65 104.36638
## 5057 47UB Bromsgrove CD 2002 90 51.36050
## 5058 47UB Bromsgrove CD 2003 85 53.13067
## 5059 47UB Bromsgrove CD 2004 110 54.70332
## 5060 47UB Bromsgrove CD 2005 75 54.05522
## 5061 47UB Bromsgrove CD 2006 75 57.58546
## 5062 47UB Bromsgrove CD 2007 95 61.52455
## 5063 47UB Bromsgrove CD 2008 90 60.10578
## 5064 47UB Bromsgrove CD 2009 80 62.83247
## 5065 47UB Bromsgrove CD 2010 70 68.50896
## 5066 47UB Bromsgrove CD 2011 60 72.85044
## 5067 47UB Bromsgrove CD 2012 50 74.06192
## 5068 47UB Bromsgrove CD 2013 55 74.49211
## 5069 47UB Bromsgrove CD 2014 50 78.45704
## 5070 47UB Bromsgrove CD 2015 65 80.12224
## 5071 47UB Bromsgrove CD 2016 45 76.69097
## 5072 47UB Bromsgrove CD 2017 50 83.95637
## 5073 47UC Malvern Hills CD 2002 55 52.47259
## 5074 47UC Malvern Hills CD 2003 70 55.75016
## 5075 47UC Malvern Hills CD 2004 80 56.60791
## 5076 47UC Malvern Hills CD 2005 75 57.47210
## 5077 47UC Malvern Hills CD 2006 65 60.58595
## 5078 47UC Malvern Hills CD 2007 60 60.99672
## 5079 47UC Malvern Hills CD 2008 70 62.77869
## 5080 47UC Malvern Hills CD 2009 80 63.25790
## 5081 47UC Malvern Hills CD 2010 60 63.39741
## 5082 47UC Malvern Hills CD 2011 55 65.96797
## 5083 47UC Malvern Hills CD 2012 55 67.62918
## 5084 47UC Malvern Hills CD 2013 80 70.26321
## 5085 47UC Malvern Hills CD 2014 50 76.27910
## 5086 47UC Malvern Hills CD 2015 65 75.91547
## 5087 47UC Malvern Hills CD 2016 55 73.51868
## 5088 47UC Malvern Hills CD 2017 60 76.74697
## 5089 47UD Redditch CD 2002 45 31.93709
## 5090 47UD Redditch CD 2003 45 33.35078
## 5091 47UD Redditch CD 2004 35 34.98252
## 5092 47UD Redditch CD 2005 55 34.19109
## 5093 47UD Redditch CD 2006 50 33.99970
## 5094 47UD Redditch CD 2007 40 36.97624
## 5095 47UD Redditch CD 2008 55 35.38726
## 5096 47UD Redditch CD 2009 45 38.69132
## 5097 47UD Redditch CD 2010 45 38.29193
## 5098 47UD Redditch CD 2011 30 40.64384
## 5099 47UD Redditch CD 2012 40 39.41775
## 5100 47UD Redditch CD 2013 40 39.37899
## 5101 47UD Redditch CD 2014 25 43.31725
## 5102 47UD Redditch CD 2015 15 43.83941
## 5103 47UD Redditch CD 2016 40 47.42469
## 5104 47UD Redditch CD 2017 25 46.58289
## 5105 47UE Worcester CD 2002 50 43.57315
## 5106 47UE Worcester CD 2003 60 42.33623
## 5107 47UE Worcester CD 2004 45 45.61188
## 5108 47UE Worcester CD 2005 50 44.63909
## 5109 47UE Worcester CD 2006 55 45.77562
## 5110 47UE Worcester CD 2007 45 46.11553
## 5111 47UE Worcester CD 2008 55 48.27570
## 5112 47UE Worcester CD 2009 40 51.78861
## 5113 47UE Worcester CD 2010 40 49.95632
## 5114 47UE Worcester CD 2011 50 52.11989
## 5115 47UE Worcester CD 2012 55 55.55498
## 5116 47UE Worcester CD 2013 55 54.36379
## 5117 47UE Worcester CD 2014 35 53.25623
## 5118 47UE Worcester CD 2015 45 58.86036
## 5119 47UE Worcester CD 2016 45 58.07439
## 5120 47UE Worcester CD 2017 60 62.20149
## 5121 47UF Wychavon CD 2002 55 66.04711
## 5122 47UF Wychavon CD 2003 65 65.91243
## 5123 47UF Wychavon CD 2004 55 68.68382
## 5124 47UF Wychavon CD 2005 70 70.90566
## 5125 47UF Wychavon CD 2006 90 72.48202
## 5126 47UF Wychavon CD 2007 80 74.72637
## 5127 47UF Wychavon CD 2008 80 77.65063
## 5128 47UF Wychavon CD 2009 80 79.97145
## 5129 47UF Wychavon CD 2010 55 80.86977
## 5130 47UF Wychavon CD 2011 75 90.33517
## 5131 47UF Wychavon CD 2012 65 88.21516
## 5132 47UF Wychavon CD 2013 65 92.77957
## 5133 47UF Wychavon CD 2014 55 94.39924
## 5134 47UF Wychavon CD 2015 65 102.20013
## 5135 47UF Wychavon CD 2016 65 99.14125
## 5136 47UF Wychavon CD 2017 75 104.44696
## 5137 47UG Wyre Forest CD 2002 50 54.46983
## 5138 47UG Wyre Forest CD 2003 80 54.83857
## 5139 47UG Wyre Forest CD 2004 65 57.84656
## 5140 47UG Wyre Forest CD 2005 60 59.16824
## 5141 47UG Wyre Forest CD 2006 40 57.00222
## 5142 47UG Wyre Forest CD 2007 65 60.86121
## 5143 47UG Wyre Forest CD 2008 55 58.84188
## 5144 47UG Wyre Forest CD 2009 50 60.14591
## 5145 47UG Wyre Forest CD 2010 50 64.55088
## 5146 47UG Wyre Forest CD 2011 50 64.01424
## 5147 47UG Wyre Forest CD 2012 60 71.62789
## 5148 47UG Wyre Forest CD 2013 60 68.35540
## 5149 47UG Wyre Forest CD 2014 35 72.91361
## 5150 47UG Wyre Forest CD 2015 55 72.06150
## 5151 47UG Wyre Forest CD 2016 50 80.73509
## 5152 47UG Wyre Forest CD 2017 70 80.46754
## Deprivation PhysicalActivity
## 1 32.768 56.59024
## 2 32.768 56.59024
## 3 32.768 56.59024
## 4 32.768 56.59024
## 5 32.768 56.59024
## 6 32.768 56.59024
## 7 32.768 56.59024
## 8 32.768 56.59024
## 9 32.768 56.59024
## 10 32.768 56.59024
## 11 32.768 56.59024
## 12 32.768 56.59024
## 13 32.768 56.59024
## 14 32.768 56.59024
## 15 32.768 56.59024
## 16 32.768 56.59024
## 17 16.148 59.92501
## 18 16.148 59.92501
## 19 16.148 59.92501
## 20 16.148 59.92501
## 21 16.148 59.92501
## 22 16.148 59.92501
## 23 16.148 59.92501
## 24 16.148 59.92501
## 25 16.148 59.92501
## 26 16.148 59.92501
## 27 16.148 59.92501
## 28 16.148 59.92501
## 29 16.148 59.92501
## 30 16.148 59.92501
## 31 16.148 59.92501
## 32 16.148 59.92501
## 33 16.273 66.48984
## 34 16.273 66.48984
## 35 16.273 66.48984
## 36 16.273 66.48984
## 37 16.273 66.48984
## 38 16.273 66.48984
## 39 16.273 66.48984
## 40 16.273 66.48984
## 41 16.273 66.48984
## 42 16.273 66.48984
## 43 16.273 66.48984
## 44 16.273 66.48984
## 45 16.273 66.48984
## 46 16.273 66.48984
## 47 16.273 66.48984
## 48 16.273 66.48984
## 49 25.558 57.42320
## 50 25.558 57.42320
## 51 25.558 57.42320
## 52 25.558 57.42320
## 53 25.558 57.42320
## 54 25.558 57.42320
## 55 25.558 57.42320
## 56 25.558 57.42320
## 57 25.558 57.42320
## 58 25.558 57.42320
## 59 25.558 57.42320
## 60 25.558 57.42320
## 61 25.558 57.42320
## 62 25.558 57.42320
## 63 25.558 57.42320
## 64 25.558 57.42320
## 65 14.163 70.29035
## 66 14.163 70.29035
## 67 14.163 70.29035
## 68 14.163 70.29035
## 69 14.163 70.29035
## 70 14.163 70.29035
## 71 14.163 70.29035
## 72 14.163 70.29035
## 73 14.163 70.29035
## 74 14.163 70.29035
## 75 14.163 70.29035
## 76 14.163 70.29035
## 77 14.163 70.29035
## 78 14.163 70.29035
## 79 14.163 70.29035
## 80 14.163 70.29035
## 81 20.131 68.82496
## 82 20.131 68.82496
## 83 20.131 68.82496
## 84 20.131 68.82496
## 85 20.131 68.82496
## 86 20.131 68.82496
## 87 20.131 68.82496
## 88 20.131 68.82496
## 89 20.131 68.82496
## 90 20.131 68.82496
## 91 20.131 68.82496
## 92 20.131 68.82496
## 93 20.131 68.82496
## 94 20.131 68.82496
## 95 20.131 68.82496
## 96 20.131 68.82496
## 97 22.477 66.28126
## 98 22.477 66.28126
## 99 22.477 66.28126
## 100 22.477 66.28126
## 101 22.477 66.28126
## 102 22.477 66.28126
## 103 22.477 66.28126
## 104 22.477 66.28126
## 105 22.477 66.28126
## 106 22.477 66.28126
## 107 22.477 66.28126
## 108 22.477 66.28126
## 109 22.477 66.28126
## 110 22.477 66.28126
## 111 22.477 66.28126
## 112 22.477 66.28126
## 113 22.710 62.99188
## 114 22.710 62.99188
## 115 22.710 62.99188
## 116 22.710 62.99188
## 117 22.710 62.99188
## 118 22.710 62.99188
## 119 22.710 62.99188
## 120 22.710 62.99188
## 121 22.710 62.99188
## 122 22.710 62.99188
## 123 22.710 62.99188
## 124 22.710 62.99188
## 125 22.710 62.99188
## 126 22.710 62.99188
## 127 22.710 62.99188
## 128 22.710 62.99188
## 129 25.781 61.98020
## 130 25.781 61.98020
## 131 25.781 61.98020
## 132 25.781 61.98020
## 133 25.781 61.98020
## 134 25.781 61.98020
## 135 25.781 61.98020
## 136 25.781 61.98020
## 137 25.781 61.98020
## 138 25.781 61.98020
## 139 25.781 61.98020
## 140 25.781 61.98020
## 141 25.781 61.98020
## 142 25.781 61.98020
## 143 25.781 61.98020
## 144 25.781 61.98020
## 145 24.464 65.94970
## 146 24.464 65.94970
## 147 24.464 65.94970
## 148 24.464 65.94970
## 149 24.464 65.94970
## 150 24.464 65.94970
## 151 24.464 65.94970
## 152 24.464 65.94970
## 153 24.464 65.94970
## 154 24.464 65.94970
## 155 24.464 65.94970
## 156 24.464 65.94970
## 157 24.464 65.94970
## 158 24.464 65.94970
## 159 24.464 65.94970
## 160 24.464 65.94970
## 161 32.526 70.69022
## 162 32.526 70.69022
## 163 32.526 70.69022
## 164 32.526 70.69022
## 165 32.526 70.69022
## 166 32.526 70.69022
## 167 32.526 70.69022
## 168 32.526 70.69022
## 169 32.526 70.69022
## 170 32.526 70.69022
## 171 32.526 70.69022
## 172 32.526 70.69022
## 173 32.526 70.69022
## 174 32.526 70.69022
## 175 32.526 70.69022
## 176 32.526 70.69022
## 177 22.270 72.92297
## 178 22.270 72.92297
## 179 22.270 72.92297
## 180 22.270 72.92297
## 181 22.270 72.92297
## 182 22.270 72.92297
## 183 22.270 72.92297
## 184 22.270 72.92297
## 185 22.270 72.92297
## 186 22.270 72.92297
## 187 22.270 72.92297
## 188 22.270 72.92297
## 189 22.270 72.92297
## 190 22.270 72.92297
## 191 22.270 72.92297
## 192 22.270 72.92297
## 193 27.956 66.44572
## 194 27.956 66.44572
## 195 27.956 66.44572
## 196 27.956 66.44572
## 197 27.956 66.44572
## 198 27.956 66.44572
## 199 27.956 66.44572
## 200 27.956 66.44572
## 201 27.956 66.44572
## 202 27.956 66.44572
## 203 27.956 66.44572
## 204 27.956 66.44572
## 205 27.956 66.44572
## 206 27.956 66.44572
## 207 27.956 66.44572
## 208 27.956 66.44572
## 209 15.031 63.64400
## 210 15.031 63.64400
## 211 15.031 63.64400
## 212 15.031 63.64400
## 213 15.031 63.64400
## 214 15.031 63.64400
## 215 15.031 63.64400
## 216 15.031 63.64400
## 217 15.031 63.64400
## 218 15.031 63.64400
## 219 15.031 63.64400
## 220 15.031 63.64400
## 221 15.031 63.64400
## 222 15.031 63.64400
## 223 15.031 63.64400
## 224 15.031 63.64400
## 225 16.789 61.14969
## 226 16.789 61.14969
## 227 16.789 61.14969
## 228 16.789 61.14969
## 229 16.789 61.14969
## 230 16.789 61.14969
## 231 16.789 61.14969
## 232 16.789 61.14969
## 233 16.789 61.14969
## 234 16.789 61.14969
## 235 16.789 61.14969
## 236 16.789 61.14969
## 237 16.789 61.14969
## 238 16.789 61.14969
## 239 16.789 61.14969
## 240 16.789 61.14969
## 241 18.223 59.43387
## 242 18.223 59.43387
## 243 18.223 59.43387
## 244 18.223 59.43387
## 245 18.223 59.43387
## 246 18.223 59.43387
## 247 18.223 59.43387
## 248 18.223 59.43387
## 249 18.223 59.43387
## 250 18.223 59.43387
## 251 18.223 59.43387
## 252 18.223 59.43387
## 253 18.223 59.43387
## 254 18.223 59.43387
## 255 18.223 59.43387
## 256 18.223 59.43387
## 257 21.487 58.03278
## 258 21.487 58.03278
## 259 21.487 58.03278
## 260 21.487 58.03278
## 261 21.487 58.03278
## 262 21.487 58.03278
## 263 21.487 58.03278
## 264 21.487 58.03278
## 265 21.487 58.03278
## 266 21.487 58.03278
## 267 21.487 58.03278
## 268 21.487 58.03278
## 269 21.487 58.03278
## 270 21.487 58.03278
## 271 21.487 58.03278
## 272 21.487 58.03278
## 273 27.535 74.17284
## 274 27.535 74.17284
## 275 27.535 74.17284
## 276 27.535 74.17284
## 277 27.535 74.17284
## 278 27.535 74.17284
## 279 27.535 74.17284
## 280 27.535 74.17284
## 281 27.535 74.17284
## 282 27.535 74.17284
## 283 27.535 74.17284
## 284 27.535 74.17284
## 285 27.535 74.17284
## 286 27.535 74.17284
## 287 27.535 74.17284
## 288 27.535 74.17284
## 289 21.526 64.70204
## 290 21.526 64.70204
## 291 21.526 64.70204
## 292 21.526 64.70204
## 293 21.526 64.70204
## 294 21.526 64.70204
## 295 21.526 64.70204
## 296 21.526 64.70204
## 297 21.526 64.70204
## 298 21.526 64.70204
## 299 21.526 64.70204
## 300 21.526 64.70204
## 301 21.526 64.70204
## 302 21.526 64.70204
## 303 21.526 64.70204
## 304 21.526 64.70204
## 305 11.381 64.95400
## 306 11.381 64.95400
## 307 11.381 64.95400
## 308 11.381 64.95400
## 309 11.381 64.95400
## 310 11.381 64.95400
## 311 11.381 64.95400
## 312 11.381 64.95400
## 313 11.381 64.95400
## 314 11.381 64.95400
## 315 11.381 64.95400
## 316 11.381 64.95400
## 317 11.381 64.95400
## 318 11.381 64.95400
## 319 11.381 64.95400
## 320 11.381 64.95400
## 321 25.422 70.83225
## 322 25.422 70.83225
## 323 25.422 70.83225
## 324 25.422 70.83225
## 325 25.422 70.83225
## 326 25.422 70.83225
## 327 25.422 70.83225
## 328 25.422 70.83225
## 329 25.422 70.83225
## 330 25.422 70.83225
## 331 25.422 70.83225
## 332 25.422 70.83225
## 333 25.422 70.83225
## 334 25.422 70.83225
## 335 25.422 70.83225
## 336 25.422 70.83225
## 337 26.661 73.88462
## 338 26.661 73.88462
## 339 26.661 73.88462
## 340 26.661 73.88462
## 341 26.661 73.88462
## 342 26.661 73.88462
## 343 26.661 73.88462
## 344 26.661 73.88462
## 345 26.661 73.88462
## 346 26.661 73.88462
## 347 26.661 73.88462
## 348 26.661 73.88462
## 349 26.661 73.88462
## 350 26.661 73.88462
## 351 26.661 73.88462
## 352 26.661 73.88462
## 353 14.649 69.78064
## 354 14.649 69.78064
## 355 14.649 69.78064
## 356 14.649 69.78064
## 357 14.649 69.78064
## 358 14.649 69.78064
## 359 14.649 69.78064
## 360 14.649 69.78064
## 361 14.649 69.78064
## 362 14.649 69.78064
## 363 14.649 69.78064
## 364 14.649 69.78064
## 365 14.649 69.78064
## 366 14.649 69.78064
## 367 14.649 69.78064
## 368 14.649 69.78064
## 369 29.577 59.49330
## 370 29.577 59.49330
## 371 29.577 59.49330
## 372 29.577 59.49330
## 373 29.577 59.49330
## 374 29.577 59.49330
## 375 29.577 59.49330
## 376 29.577 59.49330
## 377 29.577 59.49330
## 378 29.577 59.49330
## 379 29.577 59.49330
## 380 29.577 59.49330
## 381 29.577 59.49330
## 382 29.577 59.49330
## 383 29.577 59.49330
## 384 29.577 59.49330
## 385 17.203 60.54320
## 386 17.203 60.54320
## 387 17.203 60.54320
## 388 17.203 60.54320
## 389 17.203 60.54320
## 390 17.203 60.54320
## 391 17.203 60.54320
## 392 17.203 60.54320
## 393 17.203 60.54320
## 394 17.203 60.54320
## 395 17.203 60.54320
## 396 17.203 60.54320
## 397 17.203 60.54320
## 398 17.203 60.54320
## 399 17.203 60.54320
## 400 17.203 60.54320
## 401 9.425 71.63973
## 402 9.425 71.63973
## 403 9.425 71.63973
## 404 9.425 71.63973
## 405 9.425 71.63973
## 406 9.425 71.63973
## 407 9.425 71.63973
## 408 9.425 71.63973
## 409 9.425 71.63973
## 410 9.425 71.63973
## 411 9.425 71.63973
## 412 9.425 71.63973
## 413 9.425 71.63973
## 414 9.425 71.63973
## 415 9.425 71.63973
## 416 9.425 71.63973
## 417 25.811 67.76868
## 418 25.811 67.76868
## 419 25.811 67.76868
## 420 25.811 67.76868
## 421 25.811 67.76868
## 422 25.811 67.76868
## 423 25.811 67.76868
## 424 25.811 67.76868
## 425 25.811 67.76868
## 426 25.811 67.76868
## 427 25.811 67.76868
## 428 25.811 67.76868
## 429 25.811 67.76868
## 430 25.811 67.76868
## 431 25.811 67.76868
## 432 25.811 67.76868
## 433 13.987 68.73253
## 434 13.987 68.73253
## 435 13.987 68.73253
## 436 13.987 68.73253
## 437 13.987 68.73253
## 438 13.987 68.73253
## 439 13.987 68.73253
## 440 13.987 68.73253
## 441 13.987 68.73253
## 442 13.987 68.73253
## 443 13.987 68.73253
## 444 13.987 68.73253
## 445 13.987 68.73253
## 446 13.987 68.73253
## 447 13.987 68.73253
## 448 13.987 68.73253
## 449 27.913 68.73868
## 450 27.913 68.73868
## 451 27.913 68.73868
## 452 27.913 68.73868
## 453 27.913 68.73868
## 454 27.913 68.73868
## 455 27.913 68.73868
## 456 27.913 68.73868
## 457 27.913 68.73868
## 458 27.913 68.73868
## 459 27.913 68.73868
## 460 27.913 68.73868
## 461 27.913 68.73868
## 462 27.913 68.73868
## 463 27.913 68.73868
## 464 27.913 68.73868
## 465 25.209 65.45847
## 466 25.209 65.45847
## 467 25.209 65.45847
## 468 25.209 65.45847
## 469 25.209 65.45847
## 470 25.209 65.45847
## 471 25.209 65.45847
## 472 25.209 65.45847
## 473 25.209 65.45847
## 474 25.209 65.45847
## 475 25.209 65.45847
## 476 25.209 65.45847
## 477 25.209 65.45847
## 478 25.209 65.45847
## 479 25.209 65.45847
## 480 25.209 65.45847
## 481 16.611 73.77771
## 482 16.611 73.77771
## 483 16.611 73.77771
## 484 16.611 73.77771
## 485 16.611 73.77771
## 486 16.611 73.77771
## 487 16.611 73.77771
## 488 16.611 73.77771
## 489 16.611 73.77771
## 490 16.611 73.77771
## 491 16.611 73.77771
## 492 16.611 73.77771
## 493 16.611 73.77771
## 494 16.611 73.77771
## 495 16.611 73.77771
## 496 16.611 73.77771
## 497 20.339 63.91319
## 498 20.339 63.91319
## 499 20.339 63.91319
## 500 20.339 63.91319
## 501 20.339 63.91319
## 502 20.339 63.91319
## 503 20.339 63.91319
## 504 20.339 63.91319
## 505 20.339 63.91319
## 506 20.339 63.91319
## 507 20.339 63.91319
## 508 20.339 63.91319
## 509 20.339 63.91319
## 510 20.339 63.91319
## 511 20.339 63.91319
## 512 20.339 63.91319
## 513 30.691 59.42218
## 514 30.691 59.42218
## 515 30.691 59.42218
## 516 30.691 59.42218
## 517 30.691 59.42218
## 518 30.691 59.42218
## 519 30.691 59.42218
## 520 30.691 59.42218
## 521 30.691 59.42218
## 522 30.691 59.42218
## 523 30.691 59.42218
## 524 30.691 59.42218
## 525 30.691 59.42218
## 526 30.691 59.42218
## 527 30.691 59.42218
## 528 30.691 59.42218
## 529 23.682 65.84831
## 530 23.682 65.84831
## 531 23.682 65.84831
## 532 23.682 65.84831
## 533 23.682 65.84831
## 534 23.682 65.84831
## 535 23.682 65.84831
## 536 23.682 65.84831
## 537 23.682 65.84831
## 538 23.682 65.84831
## 539 23.682 65.84831
## 540 23.682 65.84831
## 541 23.682 65.84831
## 542 23.682 65.84831
## 543 23.682 65.84831
## 544 23.682 65.84831
## 545 40.005 62.40301
## 546 40.005 62.40301
## 547 40.005 62.40301
## 548 40.005 62.40301
## 549 40.005 62.40301
## 550 40.005 62.40301
## 551 40.005 62.40301
## 552 40.005 62.40301
## 553 40.005 62.40301
## 554 40.005 62.40301
## 555 40.005 62.40301
## 556 40.005 62.40301
## 557 40.005 62.40301
## 558 40.005 62.40301
## 559 40.005 62.40301
## 560 40.005 62.40301
## 561 33.155 63.74822
## 562 33.155 63.74822
## 563 33.155 63.74822
## 564 33.155 63.74822
## 565 33.155 63.74822
## 566 33.155 63.74822
## 567 33.155 63.74822
## 568 33.155 63.74822
## 569 33.155 63.74822
## 570 33.155 63.74822
## 571 33.155 63.74822
## 572 33.155 63.74822
## 573 33.155 63.74822
## 574 33.155 63.74822
## 575 33.155 63.74822
## 576 33.155 63.74822
## 577 34.415 58.10483
## 578 34.415 58.10483
## 579 34.415 58.10483
## 580 34.415 58.10483
## 581 34.415 58.10483
## 582 34.415 58.10483
## 583 34.415 58.10483
## 584 34.415 58.10483
## 585 34.415 58.10483
## 586 34.415 58.10483
## 587 34.415 58.10483
## 588 34.415 58.10483
## 589 34.415 58.10483
## 590 34.415 58.10483
## 591 34.415 58.10483
## 592 34.415 58.10483
## 593 34.210 60.40069
## 594 34.210 60.40069
## 595 34.210 60.40069
## 596 34.210 60.40069
## 597 34.210 60.40069
## 598 34.210 60.40069
## 599 34.210 60.40069
## 600 34.210 60.40069
## 601 34.210 60.40069
## 602 34.210 60.40069
## 603 34.210 60.40069
## 604 34.210 60.40069
## 605 34.210 60.40069
## 606 34.210 60.40069
## 607 34.210 60.40069
## 608 34.210 60.40069
## 609 20.826 68.10508
## 610 20.826 68.10508
## 611 20.826 68.10508
## 612 20.826 68.10508
## 613 20.826 68.10508
## 614 20.826 68.10508
## 615 20.826 68.10508
## 616 20.826 68.10508
## 617 20.826 68.10508
## 618 20.826 68.10508
## 619 20.826 68.10508
## 620 20.826 68.10508
## 621 20.826 68.10508
## 622 20.826 68.10508
## 623 20.826 68.10508
## 624 20.826 68.10508
## 625 31.374 63.41816
## 626 31.374 63.41816
## 627 31.374 63.41816
## 628 31.374 63.41816
## 629 31.374 63.41816
## 630 31.374 63.41816
## 631 31.374 63.41816
## 632 31.374 63.41816
## 633 31.374 63.41816
## 634 31.374 63.41816
## 635 31.374 63.41816
## 636 31.374 63.41816
## 637 31.374 63.41816
## 638 31.374 63.41816
## 639 31.374 63.41816
## 640 31.374 63.41816
## 641 16.088 64.02429
## 642 16.088 64.02429
## 643 16.088 64.02429
## 644 16.088 64.02429
## 645 16.088 64.02429
## 646 16.088 64.02429
## 647 16.088 64.02429
## 648 16.088 64.02429
## 649 16.088 64.02429
## 650 16.088 64.02429
## 651 16.088 64.02429
## 652 16.088 64.02429
## 653 16.088 64.02429
## 654 16.088 64.02429
## 655 16.088 64.02429
## 656 16.088 64.02429
## 657 25.713 62.17653
## 658 25.713 62.17653
## 659 25.713 62.17653
## 660 25.713 62.17653
## 661 25.713 62.17653
## 662 25.713 62.17653
## 663 25.713 62.17653
## 664 25.713 62.17653
## 665 25.713 62.17653
## 666 25.713 62.17653
## 667 25.713 62.17653
## 668 25.713 62.17653
## 669 25.713 62.17653
## 670 25.713 62.17653
## 671 25.713 62.17653
## 672 25.713 62.17653
## 673 43.006 61.08271
## 674 43.006 61.08271
## 675 43.006 61.08271
## 676 43.006 61.08271
## 677 43.006 61.08271
## 678 43.006 61.08271
## 679 43.006 61.08271
## 680 43.006 61.08271
## 681 43.006 61.08271
## 682 43.006 61.08271
## 683 43.006 61.08271
## 684 43.006 61.08271
## 685 43.006 61.08271
## 686 43.006 61.08271
## 687 43.006 61.08271
## 688 43.006 61.08271
## 689 42.412 64.92564
## 690 42.412 64.92564
## 691 42.412 64.92564
## 692 42.412 64.92564
## 693 42.412 64.92564
## 694 42.412 64.92564
## 695 42.412 64.92564
## 696 42.412 64.92564
## 697 42.412 64.92564
## 698 42.412 64.92564
## 699 42.412 64.92564
## 700 42.412 64.92564
## 701 42.412 64.92564
## 702 42.412 64.92564
## 703 42.412 64.92564
## 704 42.412 64.92564
## 705 31.518 66.47297
## 706 31.518 66.47297
## 707 31.518 66.47297
## 708 31.518 66.47297
## 709 31.518 66.47297
## 710 31.518 66.47297
## 711 31.518 66.47297
## 712 31.518 66.47297
## 713 31.518 66.47297
## 714 31.518 66.47297
## 715 31.518 66.47297
## 716 31.518 66.47297
## 717 31.518 66.47297
## 718 31.518 66.47297
## 719 31.518 66.47297
## 720 31.518 66.47297
## 721 27.035 66.38306
## 722 27.035 66.38306
## 723 27.035 66.38306
## 724 27.035 66.38306
## 725 27.035 66.38306
## 726 27.035 66.38306
## 727 27.035 66.38306
## 728 27.035 66.38306
## 729 27.035 66.38306
## 730 27.035 66.38306
## 731 27.035 66.38306
## 732 27.035 66.38306
## 733 27.035 66.38306
## 734 27.035 66.38306
## 735 27.035 66.38306
## 736 27.035 66.38306
## 737 29.589 62.88825
## 738 29.589 62.88825
## 739 29.589 62.88825
## 740 29.589 62.88825
## 741 29.589 62.88825
## 742 29.589 62.88825
## 743 29.589 62.88825
## 744 29.589 62.88825
## 745 29.589 62.88825
## 746 29.589 62.88825
## 747 29.589 62.88825
## 748 29.589 62.88825
## 749 29.589 62.88825
## 750 29.589 62.88825
## 751 29.589 62.88825
## 752 29.589 62.88825
## 753 29.933 59.73567
## 754 29.933 59.73567
## 755 29.933 59.73567
## 756 29.933 59.73567
## 757 29.933 59.73567
## 758 29.933 59.73567
## 759 29.933 59.73567
## 760 29.933 59.73567
## 761 29.933 59.73567
## 762 29.933 59.73567
## 763 29.933 59.73567
## 764 29.933 59.73567
## 765 29.933 59.73567
## 766 29.933 59.73567
## 767 29.933 59.73567
## 768 29.933 59.73567
## 769 30.289 58.57908
## 770 30.289 58.57908
## 771 30.289 58.57908
## 772 30.289 58.57908
## 773 30.289 58.57908
## 774 30.289 58.57908
## 775 30.289 58.57908
## 776 30.289 58.57908
## 777 30.289 58.57908
## 778 30.289 58.57908
## 779 30.289 58.57908
## 780 30.289 58.57908
## 781 30.289 58.57908
## 782 30.289 58.57908
## 783 30.289 58.57908
## 784 30.289 58.57908
## 785 29.550 63.15022
## 786 29.550 63.15022
## 787 29.550 63.15022
## 788 29.550 63.15022
## 789 29.550 63.15022
## 790 29.550 63.15022
## 791 29.550 63.15022
## 792 29.550 63.15022
## 793 29.550 63.15022
## 794 29.550 63.15022
## 795 29.550 63.15022
## 796 29.550 63.15022
## 797 29.550 63.15022
## 798 29.550 63.15022
## 799 29.550 63.15022
## 800 29.550 63.15022
## 801 27.060 67.49899
## 802 27.060 67.49899
## 803 27.060 67.49899
## 804 27.060 67.49899
## 805 27.060 67.49899
## 806 27.060 67.49899
## 807 27.060 67.49899
## 808 27.060 67.49899
## 809 27.060 67.49899
## 810 27.060 67.49899
## 811 27.060 67.49899
## 812 27.060 67.49899
## 813 27.060 67.49899
## 814 27.060 67.49899
## 815 27.060 67.49899
## 816 27.060 67.49899
## 817 28.217 62.75856
## 818 28.217 62.75856
## 819 28.217 62.75856
## 820 28.217 62.75856
## 821 28.217 62.75856
## 822 28.217 62.75856
## 823 28.217 62.75856
## 824 28.217 62.75856
## 825 28.217 62.75856
## 826 28.217 62.75856
## 827 28.217 62.75856
## 828 28.217 62.75856
## 829 28.217 62.75856
## 830 28.217 62.75856
## 831 28.217 62.75856
## 832 28.217 62.75856
## 833 29.790 67.76614
## 834 29.790 67.76614
## 835 29.790 67.76614
## 836 29.790 67.76614
## 837 29.790 67.76614
## 838 29.790 67.76614
## 839 29.790 67.76614
## 840 29.790 67.76614
## 841 29.790 67.76614
## 842 29.790 67.76614
## 843 29.790 67.76614
## 844 29.790 67.76614
## 845 29.790 67.76614
## 846 29.790 67.76614
## 847 29.790 67.76614
## 848 29.790 67.76614
## 849 22.279 69.25013
## 850 22.279 69.25013
## 851 22.279 69.25013
## 852 22.279 69.25013
## 853 22.279 69.25013
## 854 22.279 69.25013
## 855 22.279 69.25013
## 856 22.279 69.25013
## 857 22.279 69.25013
## 858 22.279 69.25013
## 859 22.279 69.25013
## 860 22.279 69.25013
## 861 22.279 69.25013
## 862 22.279 69.25013
## 863 22.279 69.25013
## 864 22.279 69.25013
## 865 31.509 55.69556
## 866 31.509 55.69556
## 867 31.509 55.69556
## 868 31.509 55.69556
## 869 31.509 55.69556
## 870 31.509 55.69556
## 871 31.509 55.69556
## 872 31.509 55.69556
## 873 31.509 55.69556
## 874 31.509 55.69556
## 875 31.509 55.69556
## 876 31.509 55.69556
## 877 31.509 55.69556
## 878 31.509 55.69556
## 879 31.509 55.69556
## 880 31.509 55.69556
## 881 30.586 63.14956
## 882 30.586 63.14956
## 883 30.586 63.14956
## 884 30.586 63.14956
## 885 30.586 63.14956
## 886 30.586 63.14956
## 887 30.586 63.14956
## 888 30.586 63.14956
## 889 30.586 63.14956
## 890 30.586 63.14956
## 891 30.586 63.14956
## 892 30.586 63.14956
## 893 30.586 63.14956
## 894 30.586 63.14956
## 895 30.586 63.14956
## 896 30.586 63.14956
## 897 38.067 62.54553
## 898 38.067 62.54553
## 899 38.067 62.54553
## 900 38.067 62.54553
## 901 38.067 62.54553
## 902 38.067 62.54553
## 903 38.067 62.54553
## 904 38.067 62.54553
## 905 38.067 62.54553
## 906 38.067 62.54553
## 907 38.067 62.54553
## 908 38.067 62.54553
## 909 38.067 62.54553
## 910 38.067 62.54553
## 911 38.067 62.54553
## 912 38.067 62.54553
## 913 25.613 62.31024
## 914 25.613 62.31024
## 915 25.613 62.31024
## 916 25.613 62.31024
## 917 25.613 62.31024
## 918 25.613 62.31024
## 919 25.613 62.31024
## 920 25.613 62.31024
## 921 25.613 62.31024
## 922 25.613 62.31024
## 923 25.613 62.31024
## 924 25.613 62.31024
## 925 25.613 62.31024
## 926 25.613 62.31024
## 927 25.613 62.31024
## 928 25.613 62.31024
## 929 24.103 61.59093
## 930 24.103 61.59093
## 931 24.103 61.59093
## 932 24.103 61.59093
## 933 24.103 61.59093
## 934 24.103 61.59093
## 935 24.103 61.59093
## 936 24.103 61.59093
## 937 24.103 61.59093
## 938 24.103 61.59093
## 939 24.103 61.59093
## 940 24.103 61.59093
## 941 24.103 61.59093
## 942 24.103 61.59093
## 943 24.103 61.59093
## 944 24.103 61.59093
## 945 34.884 57.76163
## 946 34.884 57.76163
## 947 34.884 57.76163
## 948 34.884 57.76163
## 949 34.884 57.76163
## 950 34.884 57.76163
## 951 34.884 57.76163
## 952 34.884 57.76163
## 953 34.884 57.76163
## 954 34.884 57.76163
## 955 34.884 57.76163
## 956 34.884 57.76163
## 957 34.884 57.76163
## 958 34.884 57.76163
## 959 34.884 57.76163
## 960 34.884 57.76163
## 961 17.370 64.43864
## 962 17.370 64.43864
## 963 17.370 64.43864
## 964 17.370 64.43864
## 965 17.370 64.43864
## 966 17.370 64.43864
## 967 17.370 64.43864
## 968 17.370 64.43864
## 969 17.370 64.43864
## 970 17.370 64.43864
## 971 17.370 64.43864
## 972 17.370 64.43864
## 973 17.370 64.43864
## 974 17.370 64.43864
## 975 17.370 64.43864
## 976 17.370 64.43864
## 977 31.555 62.30845
## 978 31.555 62.30845
## 979 31.555 62.30845
## 980 31.555 62.30845
## 981 31.555 62.30845
## 982 31.555 62.30845
## 983 31.555 62.30845
## 984 31.555 62.30845
## 985 31.555 62.30845
## 986 31.555 62.30845
## 987 31.555 62.30845
## 988 31.555 62.30845
## 989 31.555 62.30845
## 990 31.555 62.30845
## 991 31.555 62.30845
## 992 31.555 62.30845
## 993 32.102 58.09359
## 994 32.102 58.09359
## 995 32.102 58.09359
## 996 32.102 58.09359
## 997 32.102 58.09359
## 998 32.102 58.09359
## 999 32.102 58.09359
## 1000 32.102 58.09359
## 1001 32.102 58.09359
## 1002 32.102 58.09359
## 1003 32.102 58.09359
## 1004 32.102 58.09359
## 1005 32.102 58.09359
## 1006 32.102 58.09359
## 1007 32.102 58.09359
## 1008 32.102 58.09359
## 1009 34.666 60.34863
## 1010 34.666 60.34863
## 1011 34.666 60.34863
## 1012 34.666 60.34863
## 1013 34.666 60.34863
## 1014 34.666 60.34863
## 1015 34.666 60.34863
## 1016 34.666 60.34863
## 1017 34.666 60.34863
## 1018 34.666 60.34863
## 1019 34.666 60.34863
## 1020 34.666 60.34863
## 1021 34.666 60.34863
## 1022 34.666 60.34863
## 1023 34.666 60.34863
## 1024 34.666 60.34863
## 1025 26.351 63.80396
## 1026 26.351 63.80396
## 1027 26.351 63.80396
## 1028 26.351 63.80396
## 1029 26.351 63.80396
## 1030 26.351 63.80396
## 1031 26.351 63.80396
## 1032 26.351 63.80396
## 1033 26.351 63.80396
## 1034 26.351 63.80396
## 1035 26.351 63.80396
## 1036 26.351 63.80396
## 1037 26.351 63.80396
## 1038 26.351 63.80396
## 1039 26.351 63.80396
## 1040 26.351 63.80396
## 1041 25.151 65.30432
## 1042 25.151 65.30432
## 1043 25.151 65.30432
## 1044 25.151 65.30432
## 1045 25.151 65.30432
## 1046 25.151 65.30432
## 1047 25.151 65.30432
## 1048 25.151 65.30432
## 1049 25.151 65.30432
## 1050 25.151 65.30432
## 1051 25.151 65.30432
## 1052 25.151 65.30432
## 1053 25.151 65.30432
## 1054 25.151 65.30432
## 1055 25.151 65.30432
## 1056 25.151 65.30432
## 1057 27.301 62.85874
## 1058 27.301 62.85874
## 1059 27.301 62.85874
## 1060 27.301 62.85874
## 1061 27.301 62.85874
## 1062 27.301 62.85874
## 1063 27.301 62.85874
## 1064 27.301 62.85874
## 1065 27.301 62.85874
## 1066 27.301 62.85874
## 1067 27.301 62.85874
## 1068 27.301 62.85874
## 1069 27.301 62.85874
## 1070 27.301 62.85874
## 1071 27.301 62.85874
## 1072 27.301 62.85874
## 1073 27.306 60.95248
## 1074 27.306 60.95248
## 1075 27.306 60.95248
## 1076 27.306 60.95248
## 1077 27.306 60.95248
## 1078 27.306 60.95248
## 1079 27.306 60.95248
## 1080 27.306 60.95248
## 1081 27.306 60.95248
## 1082 27.306 60.95248
## 1083 27.306 60.95248
## 1084 27.306 60.95248
## 1085 27.306 60.95248
## 1086 27.306 60.95248
## 1087 27.306 60.95248
## 1088 27.306 60.95248
## 1089 35.037 62.68948
## 1090 35.037 62.68948
## 1091 35.037 62.68948
## 1092 35.037 62.68948
## 1093 35.037 62.68948
## 1094 35.037 62.68948
## 1095 35.037 62.68948
## 1096 35.037 62.68948
## 1097 35.037 62.68948
## 1098 35.037 62.68948
## 1099 35.037 62.68948
## 1100 35.037 62.68948
## 1101 35.037 62.68948
## 1102 35.037 62.68948
## 1103 35.037 62.68948
## 1104 35.037 62.68948
## 1105 40.460 62.83711
## 1106 40.460 62.83711
## 1107 40.460 62.83711
## 1108 40.460 62.83711
## 1109 40.460 62.83711
## 1110 40.460 62.83711
## 1111 40.460 62.83711
## 1112 40.460 62.83711
## 1113 40.460 62.83711
## 1114 40.460 62.83711
## 1115 40.460 62.83711
## 1116 40.460 62.83711
## 1117 40.460 62.83711
## 1118 40.460 62.83711
## 1119 40.460 62.83711
## 1120 40.460 62.83711
## 1121 29.792 65.80606
## 1122 29.792 65.80606
## 1123 29.792 65.80606
## 1124 29.792 65.80606
## 1125 29.792 65.80606
## 1126 29.792 65.80606
## 1127 29.792 65.80606
## 1128 29.792 65.80606
## 1129 29.792 65.80606
## 1130 29.792 65.80606
## 1131 29.792 65.80606
## 1132 29.792 65.80606
## 1133 29.792 65.80606
## 1134 29.792 65.80606
## 1135 29.792 65.80606
## 1136 29.792 65.80606
## 1137 25.790 59.83049
## 1138 25.790 59.83049
## 1139 25.790 59.83049
## 1140 25.790 59.83049
## 1141 25.790 59.83049
## 1142 25.790 59.83049
## 1143 25.790 59.83049
## 1144 25.790 59.83049
## 1145 25.790 59.83049
## 1146 25.790 59.83049
## 1147 25.790 59.83049
## 1148 25.790 59.83049
## 1149 25.790 59.83049
## 1150 25.790 59.83049
## 1151 25.790 59.83049
## 1152 25.790 59.83049
## 1153 25.657 65.39884
## 1154 25.657 65.39884
## 1155 25.657 65.39884
## 1156 25.657 65.39884
## 1157 25.657 65.39884
## 1158 25.657 65.39884
## 1159 25.657 65.39884
## 1160 25.657 65.39884
## 1161 25.657 65.39884
## 1162 25.657 65.39884
## 1163 25.657 65.39884
## 1164 25.657 65.39884
## 1165 25.657 65.39884
## 1166 25.657 65.39884
## 1167 25.657 65.39884
## 1168 25.657 65.39884
## 1169 26.793 63.74736
## 1170 26.793 63.74736
## 1171 26.793 63.74736
## 1172 26.793 63.74736
## 1173 26.793 63.74736
## 1174 26.793 63.74736
## 1175 26.793 63.74736
## 1176 26.793 63.74736
## 1177 26.793 63.74736
## 1178 26.793 63.74736
## 1179 26.793 63.74736
## 1180 26.793 63.74736
## 1181 26.793 63.74736
## 1182 26.793 63.74736
## 1183 26.793 63.74736
## 1184 26.793 63.74736
## 1185 22.079 65.53622
## 1186 22.079 65.53622
## 1187 22.079 65.53622
## 1188 22.079 65.53622
## 1189 22.079 65.53622
## 1190 22.079 65.53622
## 1191 22.079 65.53622
## 1192 22.079 65.53622
## 1193 22.079 65.53622
## 1194 22.079 65.53622
## 1195 22.079 65.53622
## 1196 22.079 65.53622
## 1197 22.079 65.53622
## 1198 22.079 65.53622
## 1199 22.079 65.53622
## 1200 22.079 65.53622
## 1201 14.475 69.62629
## 1202 14.475 69.62629
## 1203 14.475 69.62629
## 1204 14.475 69.62629
## 1205 14.475 69.62629
## 1206 14.475 69.62629
## 1207 14.475 69.62629
## 1208 14.475 69.62629
## 1209 14.475 69.62629
## 1210 14.475 69.62629
## 1211 14.475 69.62629
## 1212 14.475 69.62629
## 1213 14.475 69.62629
## 1214 14.475 69.62629
## 1215 14.475 69.62629
## 1216 14.475 69.62629
## 1217 32.325 59.03295
## 1218 32.325 59.03295
## 1219 32.325 59.03295
## 1220 32.325 59.03295
## 1221 32.325 59.03295
## 1222 32.325 59.03295
## 1223 32.325 59.03295
## 1224 32.325 59.03295
## 1225 32.325 59.03295
## 1226 32.325 59.03295
## 1227 32.325 59.03295
## 1228 32.325 59.03295
## 1229 32.325 59.03295
## 1230 32.325 59.03295
## 1231 32.325 59.03295
## 1232 32.325 59.03295
## 1233 18.942 64.10119
## 1234 18.942 64.10119
## 1235 18.942 64.10119
## 1236 18.942 64.10119
## 1237 18.942 64.10119
## 1238 18.942 64.10119
## 1239 18.942 64.10119
## 1240 18.942 64.10119
## 1241 18.942 64.10119
## 1242 18.942 64.10119
## 1243 18.942 64.10119
## 1244 18.942 64.10119
## 1245 18.942 64.10119
## 1246 18.942 64.10119
## 1247 18.942 64.10119
## 1248 18.942 64.10119
## 1249 18.083 66.64208
## 1250 18.083 66.64208
## 1251 18.083 66.64208
## 1252 18.083 66.64208
## 1253 18.083 66.64208
## 1254 18.083 66.64208
## 1255 18.083 66.64208
## 1256 18.083 66.64208
## 1257 18.083 66.64208
## 1258 18.083 66.64208
## 1259 18.083 66.64208
## 1260 18.083 66.64208
## 1261 18.083 66.64208
## 1262 18.083 66.64208
## 1263 18.083 66.64208
## 1264 18.083 66.64208
## 1265 36.013 62.36402
## 1266 36.013 62.36402
## 1267 36.013 62.36402
## 1268 36.013 62.36402
## 1269 36.013 62.36402
## 1270 36.013 62.36402
## 1271 36.013 62.36402
## 1272 36.013 62.36402
## 1273 36.013 62.36402
## 1274 36.013 62.36402
## 1275 36.013 62.36402
## 1276 36.013 62.36402
## 1277 36.013 62.36402
## 1278 36.013 62.36402
## 1279 36.013 62.36402
## 1280 36.013 62.36402
## 1281 45.039 60.13874
## 1282 45.039 60.13874
## 1283 45.039 60.13874
## 1284 45.039 60.13874
## 1285 45.039 60.13874
## 1286 45.039 60.13874
## 1287 45.039 60.13874
## 1288 45.039 60.13874
## 1289 45.039 60.13874
## 1290 45.039 60.13874
## 1291 45.039 60.13874
## 1292 45.039 60.13874
## 1293 45.039 60.13874
## 1294 45.039 60.13874
## 1295 45.039 60.13874
## 1296 45.039 60.13874
## 1297 40.564 62.51473
## 1298 40.564 62.51473
## 1299 40.564 62.51473
## 1300 40.564 62.51473
## 1301 40.564 62.51473
## 1302 40.564 62.51473
## 1303 40.564 62.51473
## 1304 40.564 62.51473
## 1305 40.564 62.51473
## 1306 40.564 62.51473
## 1307 40.564 62.51473
## 1308 40.564 62.51473
## 1309 40.564 62.51473
## 1310 40.564 62.51473
## 1311 40.564 62.51473
## 1312 40.564 62.51473
## 1313 15.605 68.77213
## 1314 15.605 68.77213
## 1315 15.605 68.77213
## 1316 15.605 68.77213
## 1317 15.605 68.77213
## 1318 15.605 68.77213
## 1319 15.605 68.77213
## 1320 15.605 68.77213
## 1321 15.605 68.77213
## 1322 15.605 68.77213
## 1323 15.605 68.77213
## 1324 15.605 68.77213
## 1325 15.605 68.77213
## 1326 15.605 68.77213
## 1327 15.605 68.77213
## 1328 15.605 68.77213
## 1329 31.335 60.53603
## 1330 31.335 60.53603
## 1331 31.335 60.53603
## 1332 31.335 60.53603
## 1333 31.335 60.53603
## 1334 31.335 60.53603
## 1335 31.335 60.53603
## 1336 31.335 60.53603
## 1337 31.335 60.53603
## 1338 31.335 60.53603
## 1339 31.335 60.53603
## 1340 31.335 60.53603
## 1341 31.335 60.53603
## 1342 31.335 60.53603
## 1343 31.335 60.53603
## 1344 31.335 60.53603
## 1345 22.096 66.91735
## 1346 22.096 66.91735
## 1347 22.096 66.91735
## 1348 22.096 66.91735
## 1349 22.096 66.91735
## 1350 22.096 66.91735
## 1351 22.096 66.91735
## 1352 22.096 66.91735
## 1353 22.096 66.91735
## 1354 22.096 66.91735
## 1355 22.096 66.91735
## 1356 22.096 66.91735
## 1357 22.096 66.91735
## 1358 22.096 66.91735
## 1359 22.096 66.91735
## 1360 22.096 66.91735
## 1361 11.727 66.71080
## 1362 11.727 66.71080
## 1363 11.727 66.71080
## 1364 11.727 66.71080
## 1365 11.727 66.71080
## 1366 11.727 66.71080
## 1367 11.727 66.71080
## 1368 11.727 66.71080
## 1369 11.727 66.71080
## 1370 11.727 66.71080
## 1371 11.727 66.71080
## 1372 11.727 66.71080
## 1373 11.727 66.71080
## 1374 11.727 66.71080
## 1375 11.727 66.71080
## 1376 11.727 66.71080
## 1377 26.323 69.67196
## 1378 26.323 69.67196
## 1379 26.323 69.67196
## 1380 26.323 69.67196
## 1381 26.323 69.67196
## 1382 26.323 69.67196
## 1383 26.323 69.67196
## 1384 26.323 69.67196
## 1385 26.323 69.67196
## 1386 26.323 69.67196
## 1387 26.323 69.67196
## 1388 26.323 69.67196
## 1389 26.323 69.67196
## 1390 26.323 69.67196
## 1391 26.323 69.67196
## 1392 26.323 69.67196
## 1393 30.877 57.85550
## 1394 30.877 57.85550
## 1395 30.877 57.85550
## 1396 30.877 57.85550
## 1397 30.877 57.85550
## 1398 30.877 57.85550
## 1399 30.877 57.85550
## 1400 30.877 57.85550
## 1401 30.877 57.85550
## 1402 30.877 57.85550
## 1403 30.877 57.85550
## 1404 30.877 57.85550
## 1405 30.877 57.85550
## 1406 30.877 57.85550
## 1407 30.877 57.85550
## 1408 30.877 57.85550
## 1409 8.381 69.80102
## 1410 8.381 69.80102
## 1411 8.381 69.80102
## 1412 8.381 69.80102
## 1413 8.381 69.80102
## 1414 8.381 69.80102
## 1415 8.381 69.80102
## 1416 8.381 69.80102
## 1417 8.381 69.80102
## 1418 8.381 69.80102
## 1419 8.381 69.80102
## 1420 8.381 69.80102
## 1421 8.381 69.80102
## 1422 8.381 69.80102
## 1423 8.381 69.80102
## 1424 8.381 69.80102
## 1425 34.891 64.38291
## 1426 34.891 64.38291
## 1427 34.891 64.38291
## 1428 34.891 64.38291
## 1429 34.891 64.38291
## 1430 34.891 64.38291
## 1431 34.891 64.38291
## 1432 34.891 64.38291
## 1433 34.891 64.38291
## 1434 34.891 64.38291
## 1435 34.891 64.38291
## 1436 34.891 64.38291
## 1437 34.891 64.38291
## 1438 34.891 64.38291
## 1439 34.891 64.38291
## 1440 34.891 64.38291
## 1441 24.988 63.64932
## 1442 24.988 63.64932
## 1443 24.988 63.64932
## 1444 24.988 63.64932
## 1445 24.988 63.64932
## 1446 24.988 63.64932
## 1447 24.988 63.64932
## 1448 24.988 63.64932
## 1449 24.988 63.64932
## 1450 24.988 63.64932
## 1451 24.988 63.64932
## 1452 24.988 63.64932
## 1453 24.988 63.64932
## 1454 24.988 63.64932
## 1455 24.988 63.64932
## 1456 24.988 63.64932
## 1457 17.153 70.93648
## 1458 17.153 70.93648
## 1459 17.153 70.93648
## 1460 17.153 70.93648
## 1461 17.153 70.93648
## 1462 17.153 70.93648
## 1463 17.153 70.93648
## 1464 17.153 70.93648
## 1465 17.153 70.93648
## 1466 17.153 70.93648
## 1467 17.153 70.93648
## 1468 17.153 70.93648
## 1469 17.153 70.93648
## 1470 17.153 70.93648
## 1471 17.153 70.93648
## 1472 17.153 70.93648
## 1473 34.504 58.85454
## 1474 34.504 58.85454
## 1475 34.504 58.85454
## 1476 34.504 58.85454
## 1477 34.504 58.85454
## 1478 34.504 58.85454
## 1479 34.504 58.85454
## 1480 34.504 58.85454
## 1481 34.504 58.85454
## 1482 34.504 58.85454
## 1483 34.504 58.85454
## 1484 34.504 58.85454
## 1485 34.504 58.85454
## 1486 34.504 58.85454
## 1487 34.504 58.85454
## 1488 34.504 58.85454
## 1489 11.745 69.80209
## 1490 11.745 69.80209
## 1491 11.745 69.80209
## 1492 11.745 69.80209
## 1493 11.745 69.80209
## 1494 11.745 69.80209
## 1495 11.745 69.80209
## 1496 11.745 69.80209
## 1497 11.745 69.80209
## 1498 11.745 69.80209
## 1499 11.745 69.80209
## 1500 11.745 69.80209
## 1501 11.745 69.80209
## 1502 11.745 69.80209
## 1503 11.745 69.80209
## 1504 11.745 69.80209
## 1505 26.363 73.40979
## 1506 26.363 73.40979
## 1507 26.363 73.40979
## 1508 26.363 73.40979
## 1509 26.363 73.40979
## 1510 26.363 73.40979
## 1511 26.363 73.40979
## 1512 26.363 73.40979
## 1513 26.363 73.40979
## 1514 26.363 73.40979
## 1515 26.363 73.40979
## 1516 26.363 73.40979
## 1517 26.363 73.40979
## 1518 26.363 73.40979
## 1519 26.363 73.40979
## 1520 26.363 73.40979
## 1521 15.825 69.37646
## 1522 15.825 69.37646
## 1523 15.825 69.37646
## 1524 15.825 69.37646
## 1525 15.825 69.37646
## 1526 15.825 69.37646
## 1527 15.825 69.37646
## 1528 15.825 69.37646
## 1529 15.825 69.37646
## 1530 15.825 69.37646
## 1531 15.825 69.37646
## 1532 15.825 69.37646
## 1533 15.825 69.37646
## 1534 15.825 69.37646
## 1535 15.825 69.37646
## 1536 15.825 69.37646
## 1537 11.660 70.22182
## 1538 11.660 70.22182
## 1539 11.660 70.22182
## 1540 11.660 70.22182
## 1541 11.660 70.22182
## 1542 11.660 70.22182
## 1543 11.660 70.22182
## 1544 11.660 70.22182
## 1545 11.660 70.22182
## 1546 11.660 70.22182
## 1547 11.660 70.22182
## 1548 11.660 70.22182
## 1549 11.660 70.22182
## 1550 11.660 70.22182
## 1551 11.660 70.22182
## 1552 11.660 70.22182
## 1553 23.072 70.75046
## 1554 23.072 70.75046
## 1555 23.072 70.75046
## 1556 23.072 70.75046
## 1557 23.072 70.75046
## 1558 23.072 70.75046
## 1559 23.072 70.75046
## 1560 23.072 70.75046
## 1561 23.072 70.75046
## 1562 23.072 70.75046
## 1563 23.072 70.75046
## 1564 23.072 70.75046
## 1565 23.072 70.75046
## 1566 23.072 70.75046
## 1567 23.072 70.75046
## 1568 23.072 70.75046
## 1569 26.619 71.15620
## 1570 26.619 71.15620
## 1571 26.619 71.15620
## 1572 26.619 71.15620
## 1573 26.619 71.15620
## 1574 26.619 71.15620
## 1575 26.619 71.15620
## 1576 26.619 71.15620
## 1577 26.619 71.15620
## 1578 26.619 71.15620
## 1579 26.619 71.15620
## 1580 26.619 71.15620
## 1581 26.619 71.15620
## 1582 26.619 71.15620
## 1583 26.619 71.15620
## 1584 26.619 71.15620
## 1585 28.104 66.30875
## 1586 28.104 66.30875
## 1587 28.104 66.30875
## 1588 28.104 66.30875
## 1589 28.104 66.30875
## 1590 28.104 66.30875
## 1591 28.104 66.30875
## 1592 28.104 66.30875
## 1593 28.104 66.30875
## 1594 28.104 66.30875
## 1595 28.104 66.30875
## 1596 28.104 66.30875
## 1597 28.104 66.30875
## 1598 28.104 66.30875
## 1599 28.104 66.30875
## 1600 28.104 66.30875
## 1601 31.374 63.41816
## 1602 31.374 63.41816
## 1603 31.374 63.41816
## 1604 31.374 63.41816
## 1605 31.374 63.41816
## 1606 31.374 63.41816
## 1607 31.374 63.41816
## 1608 31.374 63.41816
## 1609 31.374 63.41816
## 1610 31.374 63.41816
## 1611 31.374 63.41816
## 1612 31.374 63.41816
## 1613 31.374 63.41816
## 1614 31.374 63.41816
## 1615 31.374 63.41816
## 1616 31.374 63.41816
## 1617 16.088 64.02429
## 1618 16.088 64.02429
## 1619 16.088 64.02429
## 1620 16.088 64.02429
## 1621 16.088 64.02429
## 1622 16.088 64.02429
## 1623 16.088 64.02429
## 1624 16.088 64.02429
## 1625 16.088 64.02429
## 1626 16.088 64.02429
## 1627 16.088 64.02429
## 1628 16.088 64.02429
## 1629 16.088 64.02429
## 1630 16.088 64.02429
## 1631 16.088 64.02429
## 1632 16.088 64.02429
## 1633 18.622 67.04580
## 1634 18.622 67.04580
## 1635 18.622 67.04580
## 1636 18.622 67.04580
## 1637 18.622 67.04580
## 1638 18.622 67.04580
## 1639 18.622 67.04580
## 1640 18.622 67.04580
## 1641 18.622 67.04580
## 1642 18.622 67.04580
## 1643 18.622 67.04580
## 1644 18.622 67.04580
## 1645 18.622 67.04580
## 1646 18.622 67.04580
## 1647 18.622 67.04580
## 1648 18.622 67.04580
## 1649 13.447 74.23524
## 1650 13.447 74.23524
## 1651 13.447 74.23524
## 1652 13.447 74.23524
## 1653 13.447 74.23524
## 1654 13.447 74.23524
## 1655 13.447 74.23524
## 1656 13.447 74.23524
## 1657 13.447 74.23524
## 1658 13.447 74.23524
## 1659 13.447 74.23524
## 1660 13.447 74.23524
## 1661 13.447 74.23524
## 1662 13.447 74.23524
## 1663 13.447 74.23524
## 1664 13.447 74.23524
## 1665 27.821 62.00695
## 1666 27.821 62.00695
## 1667 27.821 62.00695
## 1668 27.821 62.00695
## 1669 27.821 62.00695
## 1670 27.821 62.00695
## 1671 27.821 62.00695
## 1672 27.821 62.00695
## 1673 27.821 62.00695
## 1674 27.821 62.00695
## 1675 27.821 62.00695
## 1676 27.821 62.00695
## 1677 27.821 62.00695
## 1678 27.821 62.00695
## 1679 27.821 62.00695
## 1680 27.821 62.00695
## 1681 25.908 61.75567
## 1682 25.908 61.75567
## 1683 25.908 61.75567
## 1684 25.908 61.75567
## 1685 25.908 61.75567
## 1686 25.908 61.75567
## 1687 25.908 61.75567
## 1688 25.908 61.75567
## 1689 25.908 61.75567
## 1690 25.908 61.75567
## 1691 25.908 61.75567
## 1692 25.908 61.75567
## 1693 25.908 61.75567
## 1694 25.908 61.75567
## 1695 25.908 61.75567
## 1696 25.908 61.75567
## 1697 18.932 63.80198
## 1698 18.932 63.80198
## 1699 18.932 63.80198
## 1700 18.932 63.80198
## 1701 18.932 63.80198
## 1702 18.932 63.80198
## 1703 18.932 63.80198
## 1704 18.932 63.80198
## 1705 18.932 63.80198
## 1706 18.932 63.80198
## 1707 18.932 63.80198
## 1708 18.932 63.80198
## 1709 18.932 63.80198
## 1710 18.932 63.80198
## 1711 18.932 63.80198
## 1712 18.932 63.80198
## 1713 12.152 66.52262
## 1714 12.152 66.52262
## 1715 12.152 66.52262
## 1716 12.152 66.52262
## 1717 12.152 66.52262
## 1718 12.152 66.52262
## 1719 12.152 66.52262
## 1720 12.152 66.52262
## 1721 12.152 66.52262
## 1722 12.152 66.52262
## 1723 12.152 66.52262
## 1724 12.152 66.52262
## 1725 12.152 66.52262
## 1726 12.152 66.52262
## 1727 12.152 66.52262
## 1728 12.152 66.52262
## 1729 22.375 65.00364
## 1730 22.375 65.00364
## 1731 22.375 65.00364
## 1732 22.375 65.00364
## 1733 22.375 65.00364
## 1734 22.375 65.00364
## 1735 22.375 65.00364
## 1736 22.375 65.00364
## 1737 22.375 65.00364
## 1738 22.375 65.00364
## 1739 22.375 65.00364
## 1740 22.375 65.00364
## 1741 22.375 65.00364
## 1742 22.375 65.00364
## 1743 22.375 65.00364
## 1744 22.375 65.00364
## 1745 20.928 54.81401
## 1746 20.928 54.81401
## 1747 20.928 54.81401
## 1748 20.928 54.81401
## 1749 20.928 54.81401
## 1750 20.928 54.81401
## 1751 20.928 54.81401
## 1752 20.928 54.81401
## 1753 20.928 54.81401
## 1754 20.928 54.81401
## 1755 20.928 54.81401
## 1756 20.928 54.81401
## 1757 20.928 54.81401
## 1758 20.928 54.81401
## 1759 20.928 54.81401
## 1760 20.928 54.81401
## 1761 23.936 65.99632
## 1762 23.936 65.99632
## 1763 23.936 65.99632
## 1764 23.936 65.99632
## 1765 23.936 65.99632
## 1766 23.936 65.99632
## 1767 23.936 65.99632
## 1768 23.936 65.99632
## 1769 23.936 65.99632
## 1770 23.936 65.99632
## 1771 23.936 65.99632
## 1772 23.936 65.99632
## 1773 23.936 65.99632
## 1774 23.936 65.99632
## 1775 23.936 65.99632
## 1776 23.936 65.99632
## 1777 10.241 68.12422
## 1778 10.241 68.12422
## 1779 10.241 68.12422
## 1780 10.241 68.12422
## 1781 10.241 68.12422
## 1782 10.241 68.12422
## 1783 10.241 68.12422
## 1784 10.241 68.12422
## 1785 10.241 68.12422
## 1786 10.241 68.12422
## 1787 10.241 68.12422
## 1788 10.241 68.12422
## 1789 10.241 68.12422
## 1790 10.241 68.12422
## 1791 10.241 68.12422
## 1792 10.241 68.12422
## 1793 9.952 71.72556
## 1794 9.952 71.72556
## 1795 9.952 71.72556
## 1796 9.952 71.72556
## 1797 9.952 71.72556
## 1798 9.952 71.72556
## 1799 9.952 71.72556
## 1800 9.952 71.72556
## 1801 9.952 71.72556
## 1802 9.952 71.72556
## 1803 9.952 71.72556
## 1804 9.952 71.72556
## 1805 9.952 71.72556
## 1806 9.952 71.72556
## 1807 9.952 71.72556
## 1808 9.952 71.72556
## 1809 19.619 64.75646
## 1810 19.619 64.75646
## 1811 19.619 64.75646
## 1812 19.619 64.75646
## 1813 19.619 64.75646
## 1814 19.619 64.75646
## 1815 19.619 64.75646
## 1816 19.619 64.75646
## 1817 19.619 64.75646
## 1818 19.619 64.75646
## 1819 19.619 64.75646
## 1820 19.619 64.75646
## 1821 19.619 64.75646
## 1822 19.619 64.75646
## 1823 19.619 64.75646
## 1824 19.619 64.75646
## 1825 22.965 59.60550
## 1826 22.965 59.60550
## 1827 22.965 59.60550
## 1828 22.965 59.60550
## 1829 22.965 59.60550
## 1830 22.965 59.60550
## 1831 22.965 59.60550
## 1832 22.965 59.60550
## 1833 22.965 59.60550
## 1834 22.965 59.60550
## 1835 22.965 59.60550
## 1836 22.965 59.60550
## 1837 22.965 59.60550
## 1838 22.965 59.60550
## 1839 22.965 59.60550
## 1840 22.965 59.60550
## 1841 8.376 69.63637
## 1842 8.376 69.63637
## 1843 8.376 69.63637
## 1844 8.376 69.63637
## 1845 8.376 69.63637
## 1846 8.376 69.63637
## 1847 8.376 69.63637
## 1848 8.376 69.63637
## 1849 8.376 69.63637
## 1850 8.376 69.63637
## 1851 8.376 69.63637
## 1852 8.376 69.63637
## 1853 8.376 69.63637
## 1854 8.376 69.63637
## 1855 8.376 69.63637
## 1856 8.376 69.63637
## 1857 5.846 69.50054
## 1858 5.846 69.50054
## 1859 5.846 69.50054
## 1860 5.846 69.50054
## 1861 5.846 69.50054
## 1862 5.846 69.50054
## 1863 5.846 69.50054
## 1864 5.846 69.50054
## 1865 5.846 69.50054
## 1866 5.846 69.50054
## 1867 5.846 69.50054
## 1868 5.846 69.50054
## 1869 5.846 69.50054
## 1870 5.846 69.50054
## 1871 5.846 69.50054
## 1872 5.846 69.50054
## 1873 17.980 66.84584
## 1874 17.980 66.84584
## 1875 17.980 66.84584
## 1876 17.980 66.84584
## 1877 17.980 66.84584
## 1878 17.980 66.84584
## 1879 17.980 66.84584
## 1880 17.980 66.84584
## 1881 17.980 66.84584
## 1882 17.980 66.84584
## 1883 17.980 66.84584
## 1884 17.980 66.84584
## 1885 17.980 66.84584
## 1886 17.980 66.84584
## 1887 17.980 66.84584
## 1888 17.980 66.84584
## 1889 20.761 75.53184
## 1890 20.761 75.53184
## 1891 20.761 75.53184
## 1892 20.761 75.53184
## 1893 20.761 75.53184
## 1894 20.761 75.53184
## 1895 20.761 75.53184
## 1896 20.761 75.53184
## 1897 20.761 75.53184
## 1898 20.761 75.53184
## 1899 20.761 75.53184
## 1900 20.761 75.53184
## 1901 20.761 75.53184
## 1902 20.761 75.53184
## 1903 20.761 75.53184
## 1904 20.761 75.53184
## 1905 26.899 66.50330
## 1906 26.899 66.50330
## 1907 26.899 66.50330
## 1908 26.899 66.50330
## 1909 26.899 66.50330
## 1910 26.899 66.50330
## 1911 26.899 66.50330
## 1912 26.899 66.50330
## 1913 26.899 66.50330
## 1914 26.899 66.50330
## 1915 26.899 66.50330
## 1916 26.899 66.50330
## 1917 26.899 66.50330
## 1918 26.899 66.50330
## 1919 26.899 66.50330
## 1920 26.899 66.50330
## 1921 26.876 66.46650
## 1922 26.876 66.46650
## 1923 26.876 66.46650
## 1924 26.876 66.46650
## 1925 26.876 66.46650
## 1926 26.876 66.46650
## 1927 26.876 66.46650
## 1928 26.876 66.46650
## 1929 26.876 66.46650
## 1930 26.876 66.46650
## 1931 26.876 66.46650
## 1932 26.876 66.46650
## 1933 26.876 66.46650
## 1934 26.876 66.46650
## 1935 26.876 66.46650
## 1936 26.876 66.46650
## 1937 11.183 57.42320
## 1938 11.183 57.42320
## 1939 11.183 57.42320
## 1940 11.183 57.42320
## 1941 11.183 57.42320
## 1942 11.183 57.42320
## 1943 11.183 57.42320
## 1944 11.183 57.42320
## 1945 11.183 57.42320
## 1946 11.183 57.42320
## 1947 11.183 57.42320
## 1948 11.183 57.42320
## 1949 11.183 57.42320
## 1950 11.183 57.42320
## 1951 11.183 57.42320
## 1952 11.183 57.42320
## 1953 6.952 58.01083
## 1954 6.952 58.01083
## 1955 6.952 58.01083
## 1956 6.952 58.01083
## 1957 6.952 58.01083
## 1958 6.952 58.01083
## 1959 6.952 58.01083
## 1960 6.952 58.01083
## 1961 6.952 58.01083
## 1962 6.952 58.01083
## 1963 6.952 58.01083
## 1964 6.952 58.01083
## 1965 6.952 58.01083
## 1966 6.952 58.01083
## 1967 6.952 58.01083
## 1968 6.952 58.01083
## 1969 9.481 58.91040
## 1970 9.481 58.91040
## 1971 9.481 58.91040
## 1972 9.481 58.91040
## 1973 9.481 58.91040
## 1974 9.481 58.91040
## 1975 9.481 58.91040
## 1976 9.481 58.91040
## 1977 9.481 58.91040
## 1978 9.481 58.91040
## 1979 9.481 58.91040
## 1980 9.481 58.91040
## 1981 9.481 58.91040
## 1982 9.481 58.91040
## 1983 9.481 58.91040
## 1984 9.481 58.91040
## 1985 10.742 66.39695
## 1986 10.742 66.39695
## 1987 10.742 66.39695
## 1988 10.742 66.39695
## 1989 10.742 66.39695
## 1990 10.742 66.39695
## 1991 10.742 66.39695
## 1992 10.742 66.39695
## 1993 10.742 66.39695
## 1994 10.742 66.39695
## 1995 10.742 66.39695
## 1996 10.742 66.39695
## 1997 10.742 66.39695
## 1998 10.742 66.39695
## 1999 10.742 66.39695
## 2000 10.742 66.39695
## 2001 14.855 78.43038
## 2002 14.855 78.43038
## 2003 14.855 78.43038
## 2004 14.855 78.43038
## 2005 14.855 78.43038
## 2006 14.855 78.43038
## 2007 14.855 78.43038
## 2008 14.855 78.43038
## 2009 14.855 78.43038
## 2010 14.855 78.43038
## 2011 14.855 78.43038
## 2012 14.855 78.43038
## 2013 14.855 78.43038
## 2014 14.855 78.43038
## 2015 14.855 78.43038
## 2016 14.855 78.43038
## 2017 11.507 63.58607
## 2018 11.507 63.58607
## 2019 11.507 63.58607
## 2020 11.507 63.58607
## 2021 11.507 63.58607
## 2022 11.507 63.58607
## 2023 11.507 63.58607
## 2024 11.507 63.58607
## 2025 11.507 63.58607
## 2026 11.507 63.58607
## 2027 11.507 63.58607
## 2028 11.507 63.58607
## 2029 11.507 63.58607
## 2030 11.507 63.58607
## 2031 11.507 63.58607
## 2032 11.507 63.58607
## 2033 25.426 64.70065
## 2034 25.426 64.70065
## 2035 25.426 64.70065
## 2036 25.426 64.70065
## 2037 25.426 64.70065
## 2038 25.426 64.70065
## 2039 25.426 64.70065
## 2040 25.426 64.70065
## 2041 25.426 64.70065
## 2042 25.426 64.70065
## 2043 25.426 64.70065
## 2044 25.426 64.70065
## 2045 25.426 64.70065
## 2046 25.426 64.70065
## 2047 25.426 64.70065
## 2048 25.426 64.70065
## 2049 12.550 62.75685
## 2050 12.550 62.75685
## 2051 12.550 62.75685
## 2052 12.550 62.75685
## 2053 12.550 62.75685
## 2054 12.550 62.75685
## 2055 12.550 62.75685
## 2056 12.550 62.75685
## 2057 12.550 62.75685
## 2058 12.550 62.75685
## 2059 12.550 62.75685
## 2060 12.550 62.75685
## 2061 12.550 62.75685
## 2062 12.550 62.75685
## 2063 12.550 62.75685
## 2064 12.550 62.75685
## 2065 8.496 71.93344
## 2066 8.496 71.93344
## 2067 8.496 71.93344
## 2068 8.496 71.93344
## 2069 8.496 71.93344
## 2070 8.496 71.93344
## 2071 8.496 71.93344
## 2072 8.496 71.93344
## 2073 8.496 71.93344
## 2074 8.496 71.93344
## 2075 8.496 71.93344
## 2076 8.496 71.93344
## 2077 8.496 71.93344
## 2078 8.496 71.93344
## 2079 8.496 71.93344
## 2080 8.496 71.93344
## 2081 22.938 71.98896
## 2082 22.938 71.98896
## 2083 22.938 71.98896
## 2084 22.938 71.98896
## 2085 22.938 71.98896
## 2086 22.938 71.98896
## 2087 22.938 71.98896
## 2088 22.938 71.98896
## 2089 22.938 71.98896
## 2090 22.938 71.98896
## 2091 22.938 71.98896
## 2092 22.938 71.98896
## 2093 22.938 71.98896
## 2094 22.938 71.98896
## 2095 22.938 71.98896
## 2096 22.938 71.98896
## 2097 31.117 58.88258
## 2098 31.117 58.88258
## 2099 31.117 58.88258
## 2100 31.117 58.88258
## 2101 31.117 58.88258
## 2102 31.117 58.88258
## 2103 31.117 58.88258
## 2104 31.117 58.88258
## 2105 31.117 58.88258
## 2106 31.117 58.88258
## 2107 31.117 58.88258
## 2108 31.117 58.88258
## 2109 31.117 58.88258
## 2110 31.117 58.88258
## 2111 31.117 58.88258
## 2112 31.117 58.88258
## 2113 21.997 69.50586
## 2114 21.997 69.50586
## 2115 21.997 69.50586
## 2116 21.997 69.50586
## 2117 21.997 69.50586
## 2118 21.997 69.50586
## 2119 21.997 69.50586
## 2120 21.997 69.50586
## 2121 21.997 69.50586
## 2122 21.997 69.50586
## 2123 21.997 69.50586
## 2124 21.997 69.50586
## 2125 21.997 69.50586
## 2126 21.997 69.50586
## 2127 21.997 69.50586
## 2128 21.997 69.50586
## 2129 25.012 62.92301
## 2130 25.012 62.92301
## 2131 25.012 62.92301
## 2132 25.012 62.92301
## 2133 25.012 62.92301
## 2134 25.012 62.92301
## 2135 25.012 62.92301
## 2136 25.012 62.92301
## 2137 25.012 62.92301
## 2138 25.012 62.92301
## 2139 25.012 62.92301
## 2140 25.012 62.92301
## 2141 25.012 62.92301
## 2142 25.012 62.92301
## 2143 25.012 62.92301
## 2144 25.012 62.92301
## 2145 16.328 71.59007
## 2146 16.328 71.59007
## 2147 16.328 71.59007
## 2148 16.328 71.59007
## 2149 16.328 71.59007
## 2150 16.328 71.59007
## 2151 16.328 71.59007
## 2152 16.328 71.59007
## 2153 16.328 71.59007
## 2154 16.328 71.59007
## 2155 16.328 71.59007
## 2156 16.328 71.59007
## 2157 16.328 71.59007
## 2158 16.328 71.59007
## 2159 16.328 71.59007
## 2160 16.328 71.59007
## 2161 12.501 71.72967
## 2162 12.501 71.72967
## 2163 12.501 71.72967
## 2164 12.501 71.72967
## 2165 12.501 71.72967
## 2166 12.501 71.72967
## 2167 12.501 71.72967
## 2168 12.501 71.72967
## 2169 12.501 71.72967
## 2170 12.501 71.72967
## 2171 12.501 71.72967
## 2172 12.501 71.72967
## 2173 12.501 71.72967
## 2174 12.501 71.72967
## 2175 12.501 71.72967
## 2176 12.501 71.72967
## 2177 17.970 67.69415
## 2178 17.970 67.69415
## 2179 17.970 67.69415
## 2180 17.970 67.69415
## 2181 17.970 67.69415
## 2182 17.970 67.69415
## 2183 17.970 67.69415
## 2184 17.970 67.69415
## 2185 17.970 67.69415
## 2186 17.970 67.69415
## 2187 17.970 67.69415
## 2188 17.970 67.69415
## 2189 17.970 67.69415
## 2190 17.970 67.69415
## 2191 17.970 67.69415
## 2192 17.970 67.69415
## 2193 25.047 62.63322
## 2194 25.047 62.63322
## 2195 25.047 62.63322
## 2196 25.047 62.63322
## 2197 25.047 62.63322
## 2198 25.047 62.63322
## 2199 25.047 62.63322
## 2200 25.047 62.63322
## 2201 25.047 62.63322
## 2202 25.047 62.63322
## 2203 25.047 62.63322
## 2204 25.047 62.63322
## 2205 25.047 62.63322
## 2206 25.047 62.63322
## 2207 25.047 62.63322
## 2208 25.047 62.63322
## 2209 24.926 71.92304
## 2210 24.926 71.92304
## 2211 24.926 71.92304
## 2212 24.926 71.92304
## 2213 24.926 71.92304
## 2214 24.926 71.92304
## 2215 24.926 71.92304
## 2216 24.926 71.92304
## 2217 24.926 71.92304
## 2218 24.926 71.92304
## 2219 24.926 71.92304
## 2220 24.926 71.92304
## 2221 24.926 71.92304
## 2222 24.926 71.92304
## 2223 24.926 71.92304
## 2224 24.926 71.92304
## 2225 11.895 73.33289
## 2226 11.895 73.33289
## 2227 11.895 73.33289
## 2228 11.895 73.33289
## 2229 11.895 73.33289
## 2230 11.895 73.33289
## 2231 11.895 73.33289
## 2232 11.895 73.33289
## 2233 11.895 73.33289
## 2234 11.895 73.33289
## 2235 11.895 73.33289
## 2236 11.895 73.33289
## 2237 11.895 73.33289
## 2238 11.895 73.33289
## 2239 11.895 73.33289
## 2240 11.895 73.33289
## 2241 18.818 71.63448
## 2242 18.818 71.63448
## 2243 18.818 71.63448
## 2244 18.818 71.63448
## 2245 18.818 71.63448
## 2246 18.818 71.63448
## 2247 18.818 71.63448
## 2248 18.818 71.63448
## 2249 18.818 71.63448
## 2250 18.818 71.63448
## 2251 18.818 71.63448
## 2252 18.818 71.63448
## 2253 18.818 71.63448
## 2254 18.818 71.63448
## 2255 18.818 71.63448
## 2256 18.818 71.63448
## 2257 15.642 72.05497
## 2258 15.642 72.05497
## 2259 15.642 72.05497
## 2260 15.642 72.05497
## 2261 15.642 72.05497
## 2262 15.642 72.05497
## 2263 15.642 72.05497
## 2264 15.642 72.05497
## 2265 15.642 72.05497
## 2266 15.642 72.05497
## 2267 15.642 72.05497
## 2268 15.642 72.05497
## 2269 15.642 72.05497
## 2270 15.642 72.05497
## 2271 15.642 72.05497
## 2272 15.642 72.05497
## 2273 17.399 70.15784
## 2274 17.399 70.15784
## 2275 17.399 70.15784
## 2276 17.399 70.15784
## 2277 17.399 70.15784
## 2278 17.399 70.15784
## 2279 17.399 70.15784
## 2280 17.399 70.15784
## 2281 17.399 70.15784
## 2282 17.399 70.15784
## 2283 17.399 70.15784
## 2284 17.399 70.15784
## 2285 17.399 70.15784
## 2286 17.399 70.15784
## 2287 17.399 70.15784
## 2288 17.399 70.15784
## 2289 14.494 69.46944
## 2290 14.494 69.46944
## 2291 14.494 69.46944
## 2292 14.494 69.46944
## 2293 14.494 69.46944
## 2294 14.494 69.46944
## 2295 14.494 69.46944
## 2296 14.494 69.46944
## 2297 14.494 69.46944
## 2298 14.494 69.46944
## 2299 14.494 69.46944
## 2300 14.494 69.46944
## 2301 14.494 69.46944
## 2302 14.494 69.46944
## 2303 14.494 69.46944
## 2304 14.494 69.46944
## 2305 12.764 70.63851
## 2306 12.764 70.63851
## 2307 12.764 70.63851
## 2308 12.764 70.63851
## 2309 12.764 70.63851
## 2310 12.764 70.63851
## 2311 12.764 70.63851
## 2312 12.764 70.63851
## 2313 12.764 70.63851
## 2314 12.764 70.63851
## 2315 12.764 70.63851
## 2316 12.764 70.63851
## 2317 12.764 70.63851
## 2318 12.764 70.63851
## 2319 12.764 70.63851
## 2320 12.764 70.63851
## 2321 16.215 74.93377
## 2322 16.215 74.93377
## 2323 16.215 74.93377
## 2324 16.215 74.93377
## 2325 16.215 74.93377
## 2326 16.215 74.93377
## 2327 16.215 74.93377
## 2328 16.215 74.93377
## 2329 16.215 74.93377
## 2330 16.215 74.93377
## 2331 16.215 74.93377
## 2332 16.215 74.93377
## 2333 16.215 74.93377
## 2334 16.215 74.93377
## 2335 16.215 74.93377
## 2336 16.215 74.93377
## 2337 16.928 70.43646
## 2338 16.928 70.43646
## 2339 16.928 70.43646
## 2340 16.928 70.43646
## 2341 16.928 70.43646
## 2342 16.928 70.43646
## 2343 16.928 70.43646
## 2344 16.928 70.43646
## 2345 16.928 70.43646
## 2346 16.928 70.43646
## 2347 16.928 70.43646
## 2348 16.928 70.43646
## 2349 16.928 70.43646
## 2350 16.928 70.43646
## 2351 16.928 70.43646
## 2352 16.928 70.43646
## 2353 20.559 67.40877
## 2354 20.559 67.40877
## 2355 20.559 67.40877
## 2356 20.559 67.40877
## 2357 20.559 67.40877
## 2358 20.559 67.40877
## 2359 20.559 67.40877
## 2360 20.559 67.40877
## 2361 20.559 67.40877
## 2362 20.559 67.40877
## 2363 20.559 67.40877
## 2364 20.559 67.40877
## 2365 20.559 67.40877
## 2366 20.559 67.40877
## 2367 20.559 67.40877
## 2368 20.559 67.40877
## 2369 13.724 71.42637
## 2370 13.724 71.42637
## 2371 13.724 71.42637
## 2372 13.724 71.42637
## 2373 13.724 71.42637
## 2374 13.724 71.42637
## 2375 13.724 71.42637
## 2376 13.724 71.42637
## 2377 13.724 71.42637
## 2378 13.724 71.42637
## 2379 13.724 71.42637
## 2380 13.724 71.42637
## 2381 13.724 71.42637
## 2382 13.724 71.42637
## 2383 13.724 71.42637
## 2384 13.724 71.42637
## 2385 15.893 71.59203
## 2386 15.893 71.59203
## 2387 15.893 71.59203
## 2388 15.893 71.59203
## 2389 15.893 71.59203
## 2390 15.893 71.59203
## 2391 15.893 71.59203
## 2392 15.893 71.59203
## 2393 15.893 71.59203
## 2394 15.893 71.59203
## 2395 15.893 71.59203
## 2396 15.893 71.59203
## 2397 15.893 71.59203
## 2398 15.893 71.59203
## 2399 15.893 71.59203
## 2400 15.893 71.59203
## 2401 23.269 66.65533
## 2402 23.269 66.65533
## 2403 23.269 66.65533
## 2404 23.269 66.65533
## 2405 23.269 66.65533
## 2406 23.269 66.65533
## 2407 23.269 66.65533
## 2408 23.269 66.65533
## 2409 23.269 66.65533
## 2410 23.269 66.65533
## 2411 23.269 66.65533
## 2412 23.269 66.65533
## 2413 23.269 66.65533
## 2414 23.269 66.65533
## 2415 23.269 66.65533
## 2416 23.269 66.65533
## 2417 18.052 72.85803
## 2418 18.052 72.85803
## 2419 18.052 72.85803
## 2420 18.052 72.85803
## 2421 18.052 72.85803
## 2422 18.052 72.85803
## 2423 18.052 72.85803
## 2424 18.052 72.85803
## 2425 18.052 72.85803
## 2426 18.052 72.85803
## 2427 18.052 72.85803
## 2428 18.052 72.85803
## 2429 18.052 72.85803
## 2430 18.052 72.85803
## 2431 18.052 72.85803
## 2432 18.052 72.85803
## 2433 25.151 65.30432
## 2434 25.151 65.30432
## 2435 25.151 65.30432
## 2436 25.151 65.30432
## 2437 25.151 65.30432
## 2438 25.151 65.30432
## 2439 25.151 65.30432
## 2440 25.151 65.30432
## 2441 25.151 65.30432
## 2442 25.151 65.30432
## 2443 25.151 65.30432
## 2444 25.151 65.30432
## 2445 25.151 65.30432
## 2446 25.151 65.30432
## 2447 25.151 65.30432
## 2448 25.151 65.30432
## 2449 34.504 58.85454
## 2450 34.504 58.85454
## 2451 34.504 58.85454
## 2452 34.504 58.85454
## 2453 34.504 58.85454
## 2454 34.504 58.85454
## 2455 34.504 58.85454
## 2456 34.504 58.85454
## 2457 34.504 58.85454
## 2458 34.504 58.85454
## 2459 34.504 58.85454
## 2460 34.504 58.85454
## 2461 34.504 58.85454
## 2462 34.504 58.85454
## 2463 34.504 58.85454
## 2464 34.504 58.85454
## 2465 12.152 66.52262
## 2466 12.152 66.52262
## 2467 12.152 66.52262
## 2468 12.152 66.52262
## 2469 12.152 66.52262
## 2470 12.152 66.52262
## 2471 12.152 66.52262
## 2472 12.152 66.52262
## 2473 12.152 66.52262
## 2474 12.152 66.52262
## 2475 12.152 66.52262
## 2476 12.152 66.52262
## 2477 12.152 66.52262
## 2478 12.152 66.52262
## 2479 12.152 66.52262
## 2480 12.152 66.52262
## 2481 22.965 59.60550
## 2482 22.965 59.60550
## 2483 22.965 59.60550
## 2484 22.965 59.60550
## 2485 22.965 59.60550
## 2486 22.965 59.60550
## 2487 22.965 59.60550
## 2488 22.965 59.60550
## 2489 22.965 59.60550
## 2490 22.965 59.60550
## 2491 22.965 59.60550
## 2492 22.965 59.60550
## 2493 22.965 59.60550
## 2494 22.965 59.60550
## 2495 22.965 59.60550
## 2496 22.965 59.60550
## 2497 11.183 57.42320
## 2498 11.183 57.42320
## 2499 11.183 57.42320
## 2500 11.183 57.42320
## 2501 11.183 57.42320
## 2502 11.183 57.42320
## 2503 11.183 57.42320
## 2504 11.183 57.42320
## 2505 11.183 57.42320
## 2506 11.183 57.42320
## 2507 11.183 57.42320
## 2508 11.183 57.42320
## 2509 11.183 57.42320
## 2510 11.183 57.42320
## 2511 11.183 57.42320
## 2512 11.183 57.42320
## 2513 22.938 71.98896
## 2514 22.938 71.98896
## 2515 22.938 71.98896
## 2516 22.938 71.98896
## 2517 22.938 71.98896
## 2518 22.938 71.98896
## 2519 22.938 71.98896
## 2520 22.938 71.98896
## 2521 22.938 71.98896
## 2522 22.938 71.98896
## 2523 22.938 71.98896
## 2524 22.938 71.98896
## 2525 22.938 71.98896
## 2526 22.938 71.98896
## 2527 22.938 71.98896
## 2528 22.938 71.98896
## 2529 22.110 57.09016
## 2530 22.110 57.09016
## 2531 22.110 57.09016
## 2532 22.110 57.09016
## 2533 22.110 57.09016
## 2534 22.110 57.09016
## 2535 22.110 57.09016
## 2536 22.110 57.09016
## 2537 22.110 57.09016
## 2538 22.110 57.09016
## 2539 22.110 57.09016
## 2540 22.110 57.09016
## 2541 22.110 57.09016
## 2542 22.110 57.09016
## 2543 22.110 57.09016
## 2544 22.110 57.09016
## 2545 34.281 72.11780
## 2546 34.281 72.11780
## 2547 34.281 72.11780
## 2548 34.281 72.11780
## 2549 34.281 72.11780
## 2550 34.281 72.11780
## 2551 34.281 72.11780
## 2552 34.281 72.11780
## 2553 34.281 72.11780
## 2554 34.281 72.11780
## 2555 34.281 72.11780
## 2556 34.281 72.11780
## 2557 34.281 72.11780
## 2558 34.281 72.11780
## 2559 34.281 72.11780
## 2560 34.281 72.11780
## 2561 15.758 71.09972
## 2562 15.758 71.09972
## 2563 15.758 71.09972
## 2564 15.758 71.09972
## 2565 15.758 71.09972
## 2566 15.758 71.09972
## 2567 15.758 71.09972
## 2568 15.758 71.09972
## 2569 15.758 71.09972
## 2570 15.758 71.09972
## 2571 15.758 71.09972
## 2572 15.758 71.09972
## 2573 15.758 71.09972
## 2574 15.758 71.09972
## 2575 15.758 71.09972
## 2576 15.758 71.09972
## 2577 19.768 65.90504
## 2578 19.768 65.90504
## 2579 19.768 65.90504
## 2580 19.768 65.90504
## 2581 19.768 65.90504
## 2582 19.768 65.90504
## 2583 19.768 65.90504
## 2584 19.768 65.90504
## 2585 19.768 65.90504
## 2586 19.768 65.90504
## 2587 19.768 65.90504
## 2588 19.768 65.90504
## 2589 19.768 65.90504
## 2590 19.768 65.90504
## 2591 19.768 65.90504
## 2592 19.768 65.90504
## 2593 12.311 74.72169
## 2594 12.311 74.72169
## 2595 12.311 74.72169
## 2596 12.311 74.72169
## 2597 12.311 74.72169
## 2598 12.311 74.72169
## 2599 12.311 74.72169
## 2600 12.311 74.72169
## 2601 12.311 74.72169
## 2602 12.311 74.72169
## 2603 12.311 74.72169
## 2604 12.311 74.72169
## 2605 12.311 74.72169
## 2606 12.311 74.72169
## 2607 12.311 74.72169
## 2608 12.311 74.72169
## 2609 23.243 65.45964
## 2610 23.243 65.45964
## 2611 23.243 65.45964
## 2612 23.243 65.45964
## 2613 23.243 65.45964
## 2614 23.243 65.45964
## 2615 23.243 65.45964
## 2616 23.243 65.45964
## 2617 23.243 65.45964
## 2618 23.243 65.45964
## 2619 23.243 65.45964
## 2620 23.243 65.45964
## 2621 23.243 65.45964
## 2622 23.243 65.45964
## 2623 23.243 65.45964
## 2624 23.243 65.45964
## 2625 14.723 57.80123
## 2626 14.723 57.80123
## 2627 14.723 57.80123
## 2628 14.723 57.80123
## 2629 14.723 57.80123
## 2630 14.723 57.80123
## 2631 14.723 57.80123
## 2632 14.723 57.80123
## 2633 14.723 57.80123
## 2634 14.723 57.80123
## 2635 14.723 57.80123
## 2636 14.723 57.80123
## 2637 14.723 57.80123
## 2638 14.723 57.80123
## 2639 14.723 57.80123
## 2640 14.723 57.80123
## 2641 10.007 68.62717
## 2642 10.007 68.62717
## 2643 10.007 68.62717
## 2644 10.007 68.62717
## 2645 10.007 68.62717
## 2646 10.007 68.62717
## 2647 10.007 68.62717
## 2648 10.007 68.62717
## 2649 10.007 68.62717
## 2650 10.007 68.62717
## 2651 10.007 68.62717
## 2652 10.007 68.62717
## 2653 10.007 68.62717
## 2654 10.007 68.62717
## 2655 10.007 68.62717
## 2656 10.007 68.62717
## 2657 16.842 69.86392
## 2658 16.842 69.86392
## 2659 16.842 69.86392
## 2660 16.842 69.86392
## 2661 16.842 69.86392
## 2662 16.842 69.86392
## 2663 16.842 69.86392
## 2664 16.842 69.86392
## 2665 16.842 69.86392
## 2666 16.842 69.86392
## 2667 16.842 69.86392
## 2668 16.842 69.86392
## 2669 16.842 69.86392
## 2670 16.842 69.86392
## 2671 16.842 69.86392
## 2672 16.842 69.86392
## 2673 12.221 67.26048
## 2674 12.221 67.26048
## 2675 12.221 67.26048
## 2676 12.221 67.26048
## 2677 12.221 67.26048
## 2678 12.221 67.26048
## 2679 12.221 67.26048
## 2680 12.221 67.26048
## 2681 12.221 67.26048
## 2682 12.221 67.26048
## 2683 12.221 67.26048
## 2684 12.221 67.26048
## 2685 12.221 67.26048
## 2686 12.221 67.26048
## 2687 12.221 67.26048
## 2688 12.221 67.26048
## 2689 16.778 74.32785
## 2690 16.778 74.32785
## 2691 16.778 74.32785
## 2692 16.778 74.32785
## 2693 16.778 74.32785
## 2694 16.778 74.32785
## 2695 16.778 74.32785
## 2696 16.778 74.32785
## 2697 16.778 74.32785
## 2698 16.778 74.32785
## 2699 16.778 74.32785
## 2700 16.778 74.32785
## 2701 16.778 74.32785
## 2702 16.778 74.32785
## 2703 16.778 74.32785
## 2704 16.778 74.32785
## 2705 15.068 68.72301
## 2706 15.068 68.72301
## 2707 15.068 68.72301
## 2708 15.068 68.72301
## 2709 15.068 68.72301
## 2710 15.068 68.72301
## 2711 15.068 68.72301
## 2712 15.068 68.72301
## 2713 15.068 68.72301
## 2714 15.068 68.72301
## 2715 15.068 68.72301
## 2716 15.068 68.72301
## 2717 15.068 68.72301
## 2718 15.068 68.72301
## 2719 15.068 68.72301
## 2720 15.068 68.72301
## 2721 21.413 60.80147
## 2722 21.413 60.80147
## 2723 21.413 60.80147
## 2724 21.413 60.80147
## 2725 21.413 60.80147
## 2726 21.413 60.80147
## 2727 21.413 60.80147
## 2728 21.413 60.80147
## 2729 21.413 60.80147
## 2730 21.413 60.80147
## 2731 21.413 60.80147
## 2732 21.413 60.80147
## 2733 21.413 60.80147
## 2734 21.413 60.80147
## 2735 21.413 60.80147
## 2736 21.413 60.80147
## 2737 14.169 68.55928
## 2738 14.169 68.55928
## 2739 14.169 68.55928
## 2740 14.169 68.55928
## 2741 14.169 68.55928
## 2742 14.169 68.55928
## 2743 14.169 68.55928
## 2744 14.169 68.55928
## 2745 14.169 68.55928
## 2746 14.169 68.55928
## 2747 14.169 68.55928
## 2748 14.169 68.55928
## 2749 14.169 68.55928
## 2750 14.169 68.55928
## 2751 14.169 68.55928
## 2752 14.169 68.55928
## 2753 10.449 64.23368
## 2754 10.449 64.23368
## 2755 10.449 64.23368
## 2756 10.449 64.23368
## 2757 10.449 64.23368
## 2758 10.449 64.23368
## 2759 10.449 64.23368
## 2760 10.449 64.23368
## 2761 10.449 64.23368
## 2762 10.449 64.23368
## 2763 10.449 64.23368
## 2764 10.449 64.23368
## 2765 10.449 64.23368
## 2766 10.449 64.23368
## 2767 10.449 64.23368
## 2768 10.449 64.23368
## 2769 30.484 58.01083
## 2770 30.484 58.01083
## 2771 30.484 58.01083
## 2772 30.484 58.01083
## 2773 30.484 58.01083
## 2774 30.484 58.01083
## 2775 30.484 58.01083
## 2776 30.484 58.01083
## 2777 30.484 58.01083
## 2778 30.484 58.01083
## 2779 30.484 58.01083
## 2780 30.484 58.01083
## 2781 30.484 58.01083
## 2782 30.484 58.01083
## 2783 30.484 58.01083
## 2784 30.484 58.01083
## 2785 9.258 68.99013
## 2786 9.258 68.99013
## 2787 9.258 68.99013
## 2788 9.258 68.99013
## 2789 9.258 68.99013
## 2790 9.258 68.99013
## 2791 9.258 68.99013
## 2792 9.258 68.99013
## 2793 9.258 68.99013
## 2794 9.258 68.99013
## 2795 9.258 68.99013
## 2796 9.258 68.99013
## 2797 9.258 68.99013
## 2798 9.258 68.99013
## 2799 9.258 68.99013
## 2800 9.258 68.99013
## 2801 14.260 74.01510
## 2802 14.260 74.01510
## 2803 14.260 74.01510
## 2804 14.260 74.01510
## 2805 14.260 74.01510
## 2806 14.260 74.01510
## 2807 14.260 74.01510
## 2808 14.260 74.01510
## 2809 14.260 74.01510
## 2810 14.260 74.01510
## 2811 14.260 74.01510
## 2812 14.260 74.01510
## 2813 14.260 74.01510
## 2814 14.260 74.01510
## 2815 14.260 74.01510
## 2816 14.260 74.01510
## 2817 11.061 73.89593
## 2818 11.061 73.89593
## 2819 11.061 73.89593
## 2820 11.061 73.89593
## 2821 11.061 73.89593
## 2822 11.061 73.89593
## 2823 11.061 73.89593
## 2824 11.061 73.89593
## 2825 11.061 73.89593
## 2826 11.061 73.89593
## 2827 11.061 73.89593
## 2828 11.061 73.89593
## 2829 11.061 73.89593
## 2830 11.061 73.89593
## 2831 11.061 73.89593
## 2832 11.061 73.89593
## 2833 18.013 68.20974
## 2834 18.013 68.20974
## 2835 18.013 68.20974
## 2836 18.013 68.20974
## 2837 18.013 68.20974
## 2838 18.013 68.20974
## 2839 18.013 68.20974
## 2840 18.013 68.20974
## 2841 18.013 68.20974
## 2842 18.013 68.20974
## 2843 18.013 68.20974
## 2844 18.013 68.20974
## 2845 18.013 68.20974
## 2846 18.013 68.20974
## 2847 18.013 68.20974
## 2848 18.013 68.20974
## 2849 21.807 64.43957
## 2850 21.807 64.43957
## 2851 21.807 64.43957
## 2852 21.807 64.43957
## 2853 21.807 64.43957
## 2854 21.807 64.43957
## 2855 21.807 64.43957
## 2856 21.807 64.43957
## 2857 21.807 64.43957
## 2858 21.807 64.43957
## 2859 21.807 64.43957
## 2860 21.807 64.43957
## 2861 21.807 64.43957
## 2862 21.807 64.43957
## 2863 21.807 64.43957
## 2864 21.807 64.43957
## 2865 10.797 72.81819
## 2866 10.797 72.81819
## 2867 10.797 72.81819
## 2868 10.797 72.81819
## 2869 10.797 72.81819
## 2870 10.797 72.81819
## 2871 10.797 72.81819
## 2872 10.797 72.81819
## 2873 10.797 72.81819
## 2874 10.797 72.81819
## 2875 10.797 72.81819
## 2876 10.797 72.81819
## 2877 10.797 72.81819
## 2878 10.797 72.81819
## 2879 10.797 72.81819
## 2880 10.797 72.81819
## 2881 12.142 74.56355
## 2882 12.142 74.56355
## 2883 12.142 74.56355
## 2884 12.142 74.56355
## 2885 12.142 74.56355
## 2886 12.142 74.56355
## 2887 12.142 74.56355
## 2888 12.142 74.56355
## 2889 12.142 74.56355
## 2890 12.142 74.56355
## 2891 12.142 74.56355
## 2892 12.142 74.56355
## 2893 12.142 74.56355
## 2894 12.142 74.56355
## 2895 12.142 74.56355
## 2896 12.142 74.56355
## 2897 12.823 67.83486
## 2898 12.823 67.83486
## 2899 12.823 67.83486
## 2900 12.823 67.83486
## 2901 12.823 67.83486
## 2902 12.823 67.83486
## 2903 12.823 67.83486
## 2904 12.823 67.83486
## 2905 12.823 67.83486
## 2906 12.823 67.83486
## 2907 12.823 67.83486
## 2908 12.823 67.83486
## 2909 12.823 67.83486
## 2910 12.823 67.83486
## 2911 12.823 67.83486
## 2912 12.823 67.83486
## 2913 10.284 72.07246
## 2914 10.284 72.07246
## 2915 10.284 72.07246
## 2916 10.284 72.07246
## 2917 10.284 72.07246
## 2918 10.284 72.07246
## 2919 10.284 72.07246
## 2920 10.284 72.07246
## 2921 10.284 72.07246
## 2922 10.284 72.07246
## 2923 10.284 72.07246
## 2924 10.284 72.07246
## 2925 10.284 72.07246
## 2926 10.284 72.07246
## 2927 10.284 72.07246
## 2928 10.284 72.07246
## 2929 10.192 58.91040
## 2930 10.192 58.91040
## 2931 10.192 58.91040
## 2932 10.192 58.91040
## 2933 10.192 58.91040
## 2934 10.192 58.91040
## 2935 10.192 58.91040
## 2936 10.192 58.91040
## 2937 10.192 58.91040
## 2938 10.192 58.91040
## 2939 10.192 58.91040
## 2940 10.192 58.91040
## 2941 10.192 58.91040
## 2942 10.192 58.91040
## 2943 10.192 58.91040
## 2944 10.192 58.91040
## 2945 9.019 71.09724
## 2946 9.019 71.09724
## 2947 9.019 71.09724
## 2948 9.019 71.09724
## 2949 9.019 71.09724
## 2950 9.019 71.09724
## 2951 9.019 71.09724
## 2952 9.019 71.09724
## 2953 9.019 71.09724
## 2954 9.019 71.09724
## 2955 9.019 71.09724
## 2956 9.019 71.09724
## 2957 9.019 71.09724
## 2958 9.019 71.09724
## 2959 9.019 71.09724
## 2960 9.019 71.09724
## 2961 20.541 69.86024
## 2962 20.541 69.86024
## 2963 20.541 69.86024
## 2964 20.541 69.86024
## 2965 20.541 69.86024
## 2966 20.541 69.86024
## 2967 20.541 69.86024
## 2968 20.541 69.86024
## 2969 20.541 69.86024
## 2970 20.541 69.86024
## 2971 20.541 69.86024
## 2972 20.541 69.86024
## 2973 20.541 69.86024
## 2974 20.541 69.86024
## 2975 20.541 69.86024
## 2976 20.541 69.86024
## 2977 5.544 70.03246
## 2978 5.544 70.03246
## 2979 5.544 70.03246
## 2980 5.544 70.03246
## 2981 5.544 70.03246
## 2982 5.544 70.03246
## 2983 5.544 70.03246
## 2984 5.544 70.03246
## 2985 5.544 70.03246
## 2986 5.544 70.03246
## 2987 5.544 70.03246
## 2988 5.544 70.03246
## 2989 5.544 70.03246
## 2990 5.544 70.03246
## 2991 5.544 70.03246
## 2992 5.544 70.03246
## 2993 21.806 66.78334
## 2994 21.806 66.78334
## 2995 21.806 66.78334
## 2996 21.806 66.78334
## 2997 21.806 66.78334
## 2998 21.806 66.78334
## 2999 21.806 66.78334
## 3000 21.806 66.78334
## 3001 21.806 66.78334
## 3002 21.806 66.78334
## 3003 21.806 66.78334
## 3004 21.806 66.78334
## 3005 21.806 66.78334
## 3006 21.806 66.78334
## 3007 21.806 66.78334
## 3008 21.806 66.78334
## 3009 13.015 70.27916
## 3010 13.015 70.27916
## 3011 13.015 70.27916
## 3012 13.015 70.27916
## 3013 13.015 70.27916
## 3014 13.015 70.27916
## 3015 13.015 70.27916
## 3016 13.015 70.27916
## 3017 13.015 70.27916
## 3018 13.015 70.27916
## 3019 13.015 70.27916
## 3020 13.015 70.27916
## 3021 13.015 70.27916
## 3022 13.015 70.27916
## 3023 13.015 70.27916
## 3024 13.015 70.27916
## 3025 15.903 65.12432
## 3026 15.903 65.12432
## 3027 15.903 65.12432
## 3028 15.903 65.12432
## 3029 15.903 65.12432
## 3030 15.903 65.12432
## 3031 15.903 65.12432
## 3032 15.903 65.12432
## 3033 15.903 65.12432
## 3034 15.903 65.12432
## 3035 15.903 65.12432
## 3036 15.903 65.12432
## 3037 15.903 65.12432
## 3038 15.903 65.12432
## 3039 15.903 65.12432
## 3040 15.903 65.12432
## 3041 11.931 61.28240
## 3042 11.931 61.28240
## 3043 11.931 61.28240
## 3044 11.931 61.28240
## 3045 11.931 61.28240
## 3046 11.931 61.28240
## 3047 11.931 61.28240
## 3048 11.931 61.28240
## 3049 11.931 61.28240
## 3050 11.931 61.28240
## 3051 11.931 61.28240
## 3052 11.931 61.28240
## 3053 11.931 61.28240
## 3054 11.931 61.28240
## 3055 11.931 61.28240
## 3056 11.931 61.28240
## 3057 9.615 69.15732
## 3058 9.615 69.15732
## 3059 9.615 69.15732
## 3060 9.615 69.15732
## 3061 9.615 69.15732
## 3062 9.615 69.15732
## 3063 9.615 69.15732
## 3064 9.615 69.15732
## 3065 9.615 69.15732
## 3066 9.615 69.15732
## 3067 9.615 69.15732
## 3068 9.615 69.15732
## 3069 9.615 69.15732
## 3070 9.615 69.15732
## 3071 9.615 69.15732
## 3072 9.615 69.15732
## 3073 17.989 61.58443
## 3074 17.989 61.58443
## 3075 17.989 61.58443
## 3076 17.989 61.58443
## 3077 17.989 61.58443
## 3078 17.989 61.58443
## 3079 17.989 61.58443
## 3080 17.989 61.58443
## 3081 17.989 61.58443
## 3082 17.989 61.58443
## 3083 17.989 61.58443
## 3084 17.989 61.58443
## 3085 17.989 61.58443
## 3086 17.989 61.58443
## 3087 17.989 61.58443
## 3088 17.989 61.58443
## 3089 13.004 65.52822
## 3090 13.004 65.52822
## 3091 13.004 65.52822
## 3092 13.004 65.52822
## 3093 13.004 65.52822
## 3094 13.004 65.52822
## 3095 13.004 65.52822
## 3096 13.004 65.52822
## 3097 13.004 65.52822
## 3098 13.004 65.52822
## 3099 13.004 65.52822
## 3100 13.004 65.52822
## 3101 13.004 65.52822
## 3102 13.004 65.52822
## 3103 13.004 65.52822
## 3104 13.004 65.52822
## 3105 8.188 71.98878
## 3106 8.188 71.98878
## 3107 8.188 71.98878
## 3108 8.188 71.98878
## 3109 8.188 71.98878
## 3110 8.188 71.98878
## 3111 8.188 71.98878
## 3112 8.188 71.98878
## 3113 8.188 71.98878
## 3114 8.188 71.98878
## 3115 8.188 71.98878
## 3116 8.188 71.98878
## 3117 8.188 71.98878
## 3118 8.188 71.98878
## 3119 8.188 71.98878
## 3120 8.188 71.98878
## 3121 13.938 61.11973
## 3122 13.938 61.11973
## 3123 13.938 61.11973
## 3124 13.938 61.11973
## 3125 13.938 61.11973
## 3126 13.938 61.11973
## 3127 13.938 61.11973
## 3128 13.938 61.11973
## 3129 13.938 61.11973
## 3130 13.938 61.11973
## 3131 13.938 61.11973
## 3132 13.938 61.11973
## 3133 13.938 61.11973
## 3134 13.938 61.11973
## 3135 13.938 61.11973
## 3136 13.938 61.11973
## 3137 11.627 70.73287
## 3138 11.627 70.73287
## 3139 11.627 70.73287
## 3140 11.627 70.73287
## 3141 11.627 70.73287
## 3142 11.627 70.73287
## 3143 11.627 70.73287
## 3144 11.627 70.73287
## 3145 11.627 70.73287
## 3146 11.627 70.73287
## 3147 11.627 70.73287
## 3148 11.627 70.73287
## 3149 11.627 70.73287
## 3150 11.627 70.73287
## 3151 11.627 70.73287
## 3152 11.627 70.73287
## 3153 8.339 74.83541
## 3154 8.339 74.83541
## 3155 8.339 74.83541
## 3156 8.339 74.83541
## 3157 8.339 74.83541
## 3158 8.339 74.83541
## 3159 8.339 74.83541
## 3160 8.339 74.83541
## 3161 8.339 74.83541
## 3162 8.339 74.83541
## 3163 8.339 74.83541
## 3164 8.339 74.83541
## 3165 8.339 74.83541
## 3166 8.339 74.83541
## 3167 8.339 74.83541
## 3168 8.339 74.83541
## 3169 19.695 68.69984
## 3170 19.695 68.69984
## 3171 19.695 68.69984
## 3172 19.695 68.69984
## 3173 19.695 68.69984
## 3174 19.695 68.69984
## 3175 19.695 68.69984
## 3176 19.695 68.69984
## 3177 19.695 68.69984
## 3178 19.695 68.69984
## 3179 19.695 68.69984
## 3180 19.695 68.69984
## 3181 19.695 68.69984
## 3182 19.695 68.69984
## 3183 19.695 68.69984
## 3184 19.695 68.69984
## 3185 9.871 69.94446
## 3186 9.871 69.94446
## 3187 9.871 69.94446
## 3188 9.871 69.94446
## 3189 9.871 69.94446
## 3190 9.871 69.94446
## 3191 9.871 69.94446
## 3192 9.871 69.94446
## 3193 9.871 69.94446
## 3194 9.871 69.94446
## 3195 9.871 69.94446
## 3196 9.871 69.94446
## 3197 9.871 69.94446
## 3198 9.871 69.94446
## 3199 9.871 69.94446
## 3200 9.871 69.94446
## 3201 15.410 67.77911
## 3202 15.410 67.77911
## 3203 15.410 67.77911
## 3204 15.410 67.77911
## 3205 15.410 67.77911
## 3206 15.410 67.77911
## 3207 15.410 67.77911
## 3208 15.410 67.77911
## 3209 15.410 67.77911
## 3210 15.410 67.77911
## 3211 15.410 67.77911
## 3212 15.410 67.77911
## 3213 15.410 67.77911
## 3214 15.410 67.77911
## 3215 15.410 67.77911
## 3216 15.410 67.77911
## 3217 14.215 68.55873
## 3218 14.215 68.55873
## 3219 14.215 68.55873
## 3220 14.215 68.55873
## 3221 14.215 68.55873
## 3222 14.215 68.55873
## 3223 14.215 68.55873
## 3224 14.215 68.55873
## 3225 14.215 68.55873
## 3226 14.215 68.55873
## 3227 14.215 68.55873
## 3228 14.215 68.55873
## 3229 14.215 68.55873
## 3230 14.215 68.55873
## 3231 14.215 68.55873
## 3232 14.215 68.55873
## 3233 18.546 67.45320
## 3234 18.546 67.45320
## 3235 18.546 67.45320
## 3236 18.546 67.45320
## 3237 18.546 67.45320
## 3238 18.546 67.45320
## 3239 18.546 67.45320
## 3240 18.546 67.45320
## 3241 18.546 67.45320
## 3242 18.546 67.45320
## 3243 18.546 67.45320
## 3244 18.546 67.45320
## 3245 18.546 67.45320
## 3246 18.546 67.45320
## 3247 18.546 67.45320
## 3248 18.546 67.45320
## 3249 16.798 64.74275
## 3250 16.798 64.74275
## 3251 16.798 64.74275
## 3252 16.798 64.74275
## 3253 16.798 64.74275
## 3254 16.798 64.74275
## 3255 16.798 64.74275
## 3256 16.798 64.74275
## 3257 16.798 64.74275
## 3258 16.798 64.74275
## 3259 16.798 64.74275
## 3260 16.798 64.74275
## 3261 16.798 64.74275
## 3262 16.798 64.74275
## 3263 16.798 64.74275
## 3264 16.798 64.74275
## 3265 18.812 64.11323
## 3266 18.812 64.11323
## 3267 18.812 64.11323
## 3268 18.812 64.11323
## 3269 18.812 64.11323
## 3270 18.812 64.11323
## 3271 18.812 64.11323
## 3272 18.812 64.11323
## 3273 18.812 64.11323
## 3274 18.812 64.11323
## 3275 18.812 64.11323
## 3276 18.812 64.11323
## 3277 18.812 64.11323
## 3278 18.812 64.11323
## 3279 18.812 64.11323
## 3280 18.812 64.11323
## 3281 22.161 65.94079
## 3282 22.161 65.94079
## 3283 22.161 65.94079
## 3284 22.161 65.94079
## 3285 22.161 65.94079
## 3286 22.161 65.94079
## 3287 22.161 65.94079
## 3288 22.161 65.94079
## 3289 22.161 65.94079
## 3290 22.161 65.94079
## 3291 22.161 65.94079
## 3292 22.161 65.94079
## 3293 22.161 65.94079
## 3294 22.161 65.94079
## 3295 22.161 65.94079
## 3296 22.161 65.94079
## 3297 21.414 62.49233
## 3298 21.414 62.49233
## 3299 21.414 62.49233
## 3300 21.414 62.49233
## 3301 21.414 62.49233
## 3302 21.414 62.49233
## 3303 21.414 62.49233
## 3304 21.414 62.49233
## 3305 21.414 62.49233
## 3306 21.414 62.49233
## 3307 21.414 62.49233
## 3308 21.414 62.49233
## 3309 21.414 62.49233
## 3310 21.414 62.49233
## 3311 21.414 62.49233
## 3312 21.414 62.49233
## 3313 16.503 67.00926
## 3314 16.503 67.00926
## 3315 16.503 67.00926
## 3316 16.503 67.00926
## 3317 16.503 67.00926
## 3318 16.503 67.00926
## 3319 16.503 67.00926
## 3320 16.503 67.00926
## 3321 16.503 67.00926
## 3322 16.503 67.00926
## 3323 16.503 67.00926
## 3324 16.503 67.00926
## 3325 16.503 67.00926
## 3326 16.503 67.00926
## 3327 16.503 67.00926
## 3328 16.503 67.00926
## 3329 12.437 68.16093
## 3330 12.437 68.16093
## 3331 12.437 68.16093
## 3332 12.437 68.16093
## 3333 12.437 68.16093
## 3334 12.437 68.16093
## 3335 12.437 68.16093
## 3336 12.437 68.16093
## 3337 12.437 68.16093
## 3338 12.437 68.16093
## 3339 12.437 68.16093
## 3340 12.437 68.16093
## 3341 12.437 68.16093
## 3342 12.437 68.16093
## 3343 12.437 68.16093
## 3344 12.437 68.16093
## 3345 24.149 66.39695
## 3346 24.149 66.39695
## 3347 24.149 66.39695
## 3348 24.149 66.39695
## 3349 24.149 66.39695
## 3350 24.149 66.39695
## 3351 24.149 66.39695
## 3352 24.149 66.39695
## 3353 24.149 66.39695
## 3354 24.149 66.39695
## 3355 24.149 66.39695
## 3356 24.149 66.39695
## 3357 24.149 66.39695
## 3358 24.149 66.39695
## 3359 24.149 66.39695
## 3360 24.149 66.39695
## 3361 27.076 62.12869
## 3362 27.076 62.12869
## 3363 27.076 62.12869
## 3364 27.076 62.12869
## 3365 27.076 62.12869
## 3366 27.076 62.12869
## 3367 27.076 62.12869
## 3368 27.076 62.12869
## 3369 27.076 62.12869
## 3370 27.076 62.12869
## 3371 27.076 62.12869
## 3372 27.076 62.12869
## 3373 27.076 62.12869
## 3374 27.076 62.12869
## 3375 27.076 62.12869
## 3376 27.076 62.12869
## 3377 31.314 62.85546
## 3378 31.314 62.85546
## 3379 31.314 62.85546
## 3380 31.314 62.85546
## 3381 31.314 62.85546
## 3382 31.314 62.85546
## 3383 31.314 62.85546
## 3384 31.314 62.85546
## 3385 31.314 62.85546
## 3386 31.314 62.85546
## 3387 31.314 62.85546
## 3388 31.314 62.85546
## 3389 31.314 62.85546
## 3390 31.314 62.85546
## 3391 31.314 62.85546
## 3392 31.314 62.85546
## 3393 13.333 72.39314
## 3394 13.333 72.39314
## 3395 13.333 72.39314
## 3396 13.333 72.39314
## 3397 13.333 72.39314
## 3398 13.333 72.39314
## 3399 13.333 72.39314
## 3400 13.333 72.39314
## 3401 13.333 72.39314
## 3402 13.333 72.39314
## 3403 13.333 72.39314
## 3404 13.333 72.39314
## 3405 13.333 72.39314
## 3406 13.333 72.39314
## 3407 13.333 72.39314
## 3408 13.333 72.39314
## 3409 11.310 69.99994
## 3410 11.310 69.99994
## 3411 11.310 69.99994
## 3412 11.310 69.99994
## 3413 11.310 69.99994
## 3414 11.310 69.99994
## 3415 11.310 69.99994
## 3416 11.310 69.99994
## 3417 11.310 69.99994
## 3418 11.310 69.99994
## 3419 11.310 69.99994
## 3420 11.310 69.99994
## 3421 11.310 69.99994
## 3422 11.310 69.99994
## 3423 11.310 69.99994
## 3424 11.310 69.99994
## 3425 37.793 59.91331
## 3426 37.793 59.91331
## 3427 37.793 59.91331
## 3428 37.793 59.91331
## 3429 37.793 59.91331
## 3430 37.793 59.91331
## 3431 37.793 59.91331
## 3432 37.793 59.91331
## 3433 37.793 59.91331
## 3434 37.793 59.91331
## 3435 37.793 59.91331
## 3436 37.793 59.91331
## 3437 37.793 59.91331
## 3438 37.793 59.91331
## 3439 37.793 59.91331
## 3440 37.793 59.91331
## 3441 16.863 66.60840
## 3442 16.863 66.60840
## 3443 16.863 66.60840
## 3444 16.863 66.60840
## 3445 16.863 66.60840
## 3446 16.863 66.60840
## 3447 16.863 66.60840
## 3448 16.863 66.60840
## 3449 16.863 66.60840
## 3450 16.863 66.60840
## 3451 16.863 66.60840
## 3452 16.863 66.60840
## 3453 16.863 66.60840
## 3454 16.863 66.60840
## 3455 16.863 66.60840
## 3456 16.863 66.60840
## 3457 15.875 66.15321
## 3458 15.875 66.15321
## 3459 15.875 66.15321
## 3460 15.875 66.15321
## 3461 15.875 66.15321
## 3462 15.875 66.15321
## 3463 15.875 66.15321
## 3464 15.875 66.15321
## 3465 15.875 66.15321
## 3466 15.875 66.15321
## 3467 15.875 66.15321
## 3468 15.875 66.15321
## 3469 15.875 66.15321
## 3470 15.875 66.15321
## 3471 15.875 66.15321
## 3472 15.875 66.15321
## 3473 34.333 61.43218
## 3474 34.333 61.43218
## 3475 34.333 61.43218
## 3476 34.333 61.43218
## 3477 34.333 61.43218
## 3478 34.333 61.43218
## 3479 34.333 61.43218
## 3480 34.333 61.43218
## 3481 34.333 61.43218
## 3482 34.333 61.43218
## 3483 34.333 61.43218
## 3484 34.333 61.43218
## 3485 34.333 61.43218
## 3486 34.333 61.43218
## 3487 34.333 61.43218
## 3488 34.333 61.43218
## 3489 24.165 75.54322
## 3490 24.165 75.54322
## 3491 24.165 75.54322
## 3492 24.165 75.54322
## 3493 24.165 75.54322
## 3494 24.165 75.54322
## 3495 24.165 75.54322
## 3496 24.165 75.54322
## 3497 24.165 75.54322
## 3498 24.165 75.54322
## 3499 24.165 75.54322
## 3500 24.165 75.54322
## 3501 24.165 75.54322
## 3502 24.165 75.54322
## 3503 24.165 75.54322
## 3504 24.165 75.54322
## 3505 30.723 58.92641
## 3506 30.723 58.92641
## 3507 30.723 58.92641
## 3508 30.723 58.92641
## 3509 30.723 58.92641
## 3510 30.723 58.92641
## 3511 30.723 58.92641
## 3512 30.723 58.92641
## 3513 30.723 58.92641
## 3514 30.723 58.92641
## 3515 30.723 58.92641
## 3516 30.723 58.92641
## 3517 30.723 58.92641
## 3518 30.723 58.92641
## 3519 30.723 58.92641
## 3520 30.723 58.92641
## 3521 29.531 68.16264
## 3522 29.531 68.16264
## 3523 29.531 68.16264
## 3524 29.531 68.16264
## 3525 29.531 68.16264
## 3526 29.531 68.16264
## 3527 29.531 68.16264
## 3528 29.531 68.16264
## 3529 29.531 68.16264
## 3530 29.531 68.16264
## 3531 29.531 68.16264
## 3532 29.531 68.16264
## 3533 29.531 68.16264
## 3534 29.531 68.16264
## 3535 29.531 68.16264
## 3536 29.531 68.16264
## 3537 10.594 72.81913
## 3538 10.594 72.81913
## 3539 10.594 72.81913
## 3540 10.594 72.81913
## 3541 10.594 72.81913
## 3542 10.594 72.81913
## 3543 10.594 72.81913
## 3544 10.594 72.81913
## 3545 10.594 72.81913
## 3546 10.594 72.81913
## 3547 10.594 72.81913
## 3548 10.594 72.81913
## 3549 10.594 72.81913
## 3550 10.594 72.81913
## 3551 10.594 72.81913
## 3552 10.594 72.81913
## 3553 24.062 64.03904
## 3554 24.062 64.03904
## 3555 24.062 64.03904
## 3556 24.062 64.03904
## 3557 24.062 64.03904
## 3558 24.062 64.03904
## 3559 24.062 64.03904
## 3560 24.062 64.03904
## 3561 24.062 64.03904
## 3562 24.062 64.03904
## 3563 24.062 64.03904
## 3564 24.062 64.03904
## 3565 24.062 64.03904
## 3566 24.062 64.03904
## 3567 24.062 64.03904
## 3568 24.062 64.03904
## 3569 15.330 69.65225
## 3570 15.330 69.65225
## 3571 15.330 69.65225
## 3572 15.330 69.65225
## 3573 15.330 69.65225
## 3574 15.330 69.65225
## 3575 15.330 69.65225
## 3576 15.330 69.65225
## 3577 15.330 69.65225
## 3578 15.330 69.65225
## 3579 15.330 69.65225
## 3580 15.330 69.65225
## 3581 15.330 69.65225
## 3582 15.330 69.65225
## 3583 15.330 69.65225
## 3584 15.330 69.65225
## 3585 18.645 65.11517
## 3586 18.645 65.11517
## 3587 18.645 65.11517
## 3588 18.645 65.11517
## 3589 18.645 65.11517
## 3590 18.645 65.11517
## 3591 18.645 65.11517
## 3592 18.645 65.11517
## 3593 18.645 65.11517
## 3594 18.645 65.11517
## 3595 18.645 65.11517
## 3596 18.645 65.11517
## 3597 18.645 65.11517
## 3598 18.645 65.11517
## 3599 18.645 65.11517
## 3600 18.645 65.11517
## 3601 20.858 59.78409
## 3602 20.858 59.78409
## 3603 20.858 59.78409
## 3604 20.858 59.78409
## 3605 20.858 59.78409
## 3606 20.858 59.78409
## 3607 20.858 59.78409
## 3608 20.858 59.78409
## 3609 20.858 59.78409
## 3610 20.858 59.78409
## 3611 20.858 59.78409
## 3612 20.858 59.78409
## 3613 20.858 59.78409
## 3614 20.858 59.78409
## 3615 20.858 59.78409
## 3616 20.858 59.78409
## 3617 10.629 62.62675
## 3618 10.629 62.62675
## 3619 10.629 62.62675
## 3620 10.629 62.62675
## 3621 10.629 62.62675
## 3622 10.629 62.62675
## 3623 10.629 62.62675
## 3624 10.629 62.62675
## 3625 10.629 62.62675
## 3626 10.629 62.62675
## 3627 10.629 62.62675
## 3628 10.629 62.62675
## 3629 10.629 62.62675
## 3630 10.629 62.62675
## 3631 10.629 62.62675
## 3632 10.629 62.62675
## 3633 13.238 70.24541
## 3634 13.238 70.24541
## 3635 13.238 70.24541
## 3636 13.238 70.24541
## 3637 13.238 70.24541
## 3638 13.238 70.24541
## 3639 13.238 70.24541
## 3640 13.238 70.24541
## 3641 13.238 70.24541
## 3642 13.238 70.24541
## 3643 13.238 70.24541
## 3644 13.238 70.24541
## 3645 13.238 70.24541
## 3646 13.238 70.24541
## 3647 13.238 70.24541
## 3648 13.238 70.24541
## 3649 8.015 61.34906
## 3650 8.015 61.34906
## 3651 8.015 61.34906
## 3652 8.015 61.34906
## 3653 8.015 61.34906
## 3654 8.015 61.34906
## 3655 8.015 61.34906
## 3656 8.015 61.34906
## 3657 8.015 61.34906
## 3658 8.015 61.34906
## 3659 8.015 61.34906
## 3660 8.015 61.34906
## 3661 8.015 61.34906
## 3662 8.015 61.34906
## 3663 8.015 61.34906
## 3664 8.015 61.34906
## 3665 13.461 67.12087
## 3666 13.461 67.12087
## 3667 13.461 67.12087
## 3668 13.461 67.12087
## 3669 13.461 67.12087
## 3670 13.461 67.12087
## 3671 13.461 67.12087
## 3672 13.461 67.12087
## 3673 13.461 67.12087
## 3674 13.461 67.12087
## 3675 13.461 67.12087
## 3676 13.461 67.12087
## 3677 13.461 67.12087
## 3678 13.461 67.12087
## 3679 13.461 67.12087
## 3680 13.461 67.12087
## 3681 12.532 64.85669
## 3682 12.532 64.85669
## 3683 12.532 64.85669
## 3684 12.532 64.85669
## 3685 12.532 64.85669
## 3686 12.532 64.85669
## 3687 12.532 64.85669
## 3688 12.532 64.85669
## 3689 12.532 64.85669
## 3690 12.532 64.85669
## 3691 12.532 64.85669
## 3692 12.532 64.85669
## 3693 12.532 64.85669
## 3694 12.532 64.85669
## 3695 12.532 64.85669
## 3696 12.532 64.85669
## 3697 14.573 69.61910
## 3698 14.573 69.61910
## 3699 14.573 69.61910
## 3700 14.573 69.61910
## 3701 14.573 69.61910
## 3702 14.573 69.61910
## 3703 14.573 69.61910
## 3704 14.573 69.61910
## 3705 14.573 69.61910
## 3706 14.573 69.61910
## 3707 14.573 69.61910
## 3708 14.573 69.61910
## 3709 14.573 69.61910
## 3710 14.573 69.61910
## 3711 14.573 69.61910
## 3712 14.573 69.61910
## 3713 12.958 64.39415
## 3714 12.958 64.39415
## 3715 12.958 64.39415
## 3716 12.958 64.39415
## 3717 12.958 64.39415
## 3718 12.958 64.39415
## 3719 12.958 64.39415
## 3720 12.958 64.39415
## 3721 12.958 64.39415
## 3722 12.958 64.39415
## 3723 12.958 64.39415
## 3724 12.958 64.39415
## 3725 12.958 64.39415
## 3726 12.958 64.39415
## 3727 12.958 64.39415
## 3728 12.958 64.39415
## 3729 22.967 60.19495
## 3730 22.967 60.19495
## 3731 22.967 60.19495
## 3732 22.967 60.19495
## 3733 22.967 60.19495
## 3734 22.967 60.19495
## 3735 22.967 60.19495
## 3736 22.967 60.19495
## 3737 22.967 60.19495
## 3738 22.967 60.19495
## 3739 22.967 60.19495
## 3740 22.967 60.19495
## 3741 22.967 60.19495
## 3742 22.967 60.19495
## 3743 22.967 60.19495
## 3744 22.967 60.19495
## 3745 29.892 69.56245
## 3746 29.892 69.56245
## 3747 29.892 69.56245
## 3748 29.892 69.56245
## 3749 29.892 69.56245
## 3750 29.892 69.56245
## 3751 29.892 69.56245
## 3752 29.892 69.56245
## 3753 29.892 69.56245
## 3754 29.892 69.56245
## 3755 29.892 69.56245
## 3756 29.892 69.56245
## 3757 29.892 69.56245
## 3758 29.892 69.56245
## 3759 29.892 69.56245
## 3760 29.892 69.56245
## 3761 26.889 72.12102
## 3762 26.889 72.12102
## 3763 26.889 72.12102
## 3764 26.889 72.12102
## 3765 26.889 72.12102
## 3766 26.889 72.12102
## 3767 26.889 72.12102
## 3768 26.889 72.12102
## 3769 26.889 72.12102
## 3770 26.889 72.12102
## 3771 26.889 72.12102
## 3772 26.889 72.12102
## 3773 26.889 72.12102
## 3774 26.889 72.12102
## 3775 26.889 72.12102
## 3776 26.889 72.12102
## 3777 11.553 70.69892
## 3778 11.553 70.69892
## 3779 11.553 70.69892
## 3780 11.553 70.69892
## 3781 11.553 70.69892
## 3782 11.553 70.69892
## 3783 11.553 70.69892
## 3784 11.553 70.69892
## 3785 11.553 70.69892
## 3786 11.553 70.69892
## 3787 11.553 70.69892
## 3788 11.553 70.69892
## 3789 11.553 70.69892
## 3790 11.553 70.69892
## 3791 11.553 70.69892
## 3792 11.553 70.69892
## 3793 17.896 59.39783
## 3794 17.896 59.39783
## 3795 17.896 59.39783
## 3796 17.896 59.39783
## 3797 17.896 59.39783
## 3798 17.896 59.39783
## 3799 17.896 59.39783
## 3800 17.896 59.39783
## 3801 17.896 59.39783
## 3802 17.896 59.39783
## 3803 17.896 59.39783
## 3804 17.896 59.39783
## 3805 17.896 59.39783
## 3806 17.896 59.39783
## 3807 17.896 59.39783
## 3808 17.896 59.39783
## 3809 13.499 65.14255
## 3810 13.499 65.14255
## 3811 13.499 65.14255
## 3812 13.499 65.14255
## 3813 13.499 65.14255
## 3814 13.499 65.14255
## 3815 13.499 65.14255
## 3816 13.499 65.14255
## 3817 13.499 65.14255
## 3818 13.499 65.14255
## 3819 13.499 65.14255
## 3820 13.499 65.14255
## 3821 13.499 65.14255
## 3822 13.499 65.14255
## 3823 13.499 65.14255
## 3824 13.499 65.14255
## 3825 20.355 62.54500
## 3826 20.355 62.54500
## 3827 20.355 62.54500
## 3828 20.355 62.54500
## 3829 20.355 62.54500
## 3830 20.355 62.54500
## 3831 20.355 62.54500
## 3832 20.355 62.54500
## 3833 20.355 62.54500
## 3834 20.355 62.54500
## 3835 20.355 62.54500
## 3836 20.355 62.54500
## 3837 20.355 62.54500
## 3838 20.355 62.54500
## 3839 20.355 62.54500
## 3840 20.355 62.54500
## 3841 19.614 59.54395
## 3842 19.614 59.54395
## 3843 19.614 59.54395
## 3844 19.614 59.54395
## 3845 19.614 59.54395
## 3846 19.614 59.54395
## 3847 19.614 59.54395
## 3848 19.614 59.54395
## 3849 19.614 59.54395
## 3850 19.614 59.54395
## 3851 19.614 59.54395
## 3852 19.614 59.54395
## 3853 19.614 59.54395
## 3854 19.614 59.54395
## 3855 19.614 59.54395
## 3856 19.614 59.54395
## 3857 11.817 70.10937
## 3858 11.817 70.10937
## 3859 11.817 70.10937
## 3860 11.817 70.10937
## 3861 11.817 70.10937
## 3862 11.817 70.10937
## 3863 11.817 70.10937
## 3864 11.817 70.10937
## 3865 11.817 70.10937
## 3866 11.817 70.10937
## 3867 11.817 70.10937
## 3868 11.817 70.10937
## 3869 11.817 70.10937
## 3870 11.817 70.10937
## 3871 11.817 70.10937
## 3872 11.817 70.10937
## 3873 33.097 58.77412
## 3874 33.097 58.77412
## 3875 33.097 58.77412
## 3876 33.097 58.77412
## 3877 33.097 58.77412
## 3878 33.097 58.77412
## 3879 33.097 58.77412
## 3880 33.097 58.77412
## 3881 33.097 58.77412
## 3882 33.097 58.77412
## 3883 33.097 58.77412
## 3884 33.097 58.77412
## 3885 33.097 58.77412
## 3886 33.097 58.77412
## 3887 33.097 58.77412
## 3888 33.097 58.77412
## 3889 23.720 67.56002
## 3890 23.720 67.56002
## 3891 23.720 67.56002
## 3892 23.720 67.56002
## 3893 23.720 67.56002
## 3894 23.720 67.56002
## 3895 23.720 67.56002
## 3896 23.720 67.56002
## 3897 23.720 67.56002
## 3898 23.720 67.56002
## 3899 23.720 67.56002
## 3900 23.720 67.56002
## 3901 23.720 67.56002
## 3902 23.720 67.56002
## 3903 23.720 67.56002
## 3904 23.720 67.56002
## 3905 21.058 66.85959
## 3906 21.058 66.85959
## 3907 21.058 66.85959
## 3908 21.058 66.85959
## 3909 21.058 66.85959
## 3910 21.058 66.85959
## 3911 21.058 66.85959
## 3912 21.058 66.85959
## 3913 21.058 66.85959
## 3914 21.058 66.85959
## 3915 21.058 66.85959
## 3916 21.058 66.85959
## 3917 21.058 66.85959
## 3918 21.058 66.85959
## 3919 21.058 66.85959
## 3920 21.058 66.85959
## 3921 27.599 71.48691
## 3922 27.599 71.48691
## 3923 27.599 71.48691
## 3924 27.599 71.48691
## 3925 27.599 71.48691
## 3926 27.599 71.48691
## 3927 27.599 71.48691
## 3928 27.599 71.48691
## 3929 27.599 71.48691
## 3930 27.599 71.48691
## 3931 27.599 71.48691
## 3932 27.599 71.48691
## 3933 27.599 71.48691
## 3934 27.599 71.48691
## 3935 27.599 71.48691
## 3936 27.599 71.48691
## 3937 13.318 69.35365
## 3938 13.318 69.35365
## 3939 13.318 69.35365
## 3940 13.318 69.35365
## 3941 13.318 69.35365
## 3942 13.318 69.35365
## 3943 13.318 69.35365
## 3944 13.318 69.35365
## 3945 13.318 69.35365
## 3946 13.318 69.35365
## 3947 13.318 69.35365
## 3948 13.318 69.35365
## 3949 13.318 69.35365
## 3950 13.318 69.35365
## 3951 13.318 69.35365
## 3952 13.318 69.35365
## 3953 25.706 60.80147
## 3954 25.706 60.80147
## 3955 25.706 60.80147
## 3956 25.706 60.80147
## 3957 25.706 60.80147
## 3958 25.706 60.80147
## 3959 25.706 60.80147
## 3960 25.706 60.80147
## 3961 25.706 60.80147
## 3962 25.706 60.80147
## 3963 25.706 60.80147
## 3964 25.706 60.80147
## 3965 25.706 60.80147
## 3966 25.706 60.80147
## 3967 25.706 60.80147
## 3968 25.706 60.80147
## 3969 13.184 74.01510
## 3970 13.184 74.01510
## 3971 13.184 74.01510
## 3972 13.184 74.01510
## 3973 13.184 74.01510
## 3974 13.184 74.01510
## 3975 13.184 74.01510
## 3976 13.184 74.01510
## 3977 13.184 74.01510
## 3978 13.184 74.01510
## 3979 13.184 74.01510
## 3980 13.184 74.01510
## 3981 13.184 74.01510
## 3982 13.184 74.01510
## 3983 13.184 74.01510
## 3984 13.184 74.01510
## 3985 13.897 75.81093
## 3986 13.897 75.81093
## 3987 13.897 75.81093
## 3988 13.897 75.81093
## 3989 13.897 75.81093
## 3990 13.897 75.81093
## 3991 13.897 75.81093
## 3992 13.897 75.81093
## 3993 13.897 75.81093
## 3994 13.897 75.81093
## 3995 13.897 75.81093
## 3996 13.897 75.81093
## 3997 13.897 75.81093
## 3998 13.897 75.81093
## 3999 13.897 75.81093
## 4000 13.897 75.81093
## 4001 19.230 74.72169
## 4002 19.230 74.72169
## 4003 19.230 74.72169
## 4004 19.230 74.72169
## 4005 19.230 74.72169
## 4006 19.230 74.72169
## 4007 19.230 74.72169
## 4008 19.230 74.72169
## 4009 19.230 74.72169
## 4010 19.230 74.72169
## 4011 19.230 74.72169
## 4012 19.230 74.72169
## 4013 19.230 74.72169
## 4014 19.230 74.72169
## 4015 19.230 74.72169
## 4016 19.230 74.72169
## 4017 23.358 74.93377
## 4018 23.358 74.93377
## 4019 23.358 74.93377
## 4020 23.358 74.93377
## 4021 23.358 74.93377
## 4022 23.358 74.93377
## 4023 23.358 74.93377
## 4024 23.358 74.93377
## 4025 23.358 74.93377
## 4026 23.358 74.93377
## 4027 23.358 74.93377
## 4028 23.358 74.93377
## 4029 23.358 74.93377
## 4030 23.358 74.93377
## 4031 23.358 74.93377
## 4032 23.358 74.93377
## 4033 7.652 57.76163
## 4034 7.652 57.76163
## 4035 7.652 57.76163
## 4036 7.652 57.76163
## 4037 7.652 57.76163
## 4038 7.652 57.76163
## 4039 7.652 57.76163
## 4040 7.652 57.76163
## 4041 7.652 57.76163
## 4042 7.652 57.76163
## 4043 7.652 57.76163
## 4044 7.652 57.76163
## 4045 7.652 57.76163
## 4046 7.652 57.76163
## 4047 7.652 57.76163
## 4048 7.652 57.76163
## 4049 21.676 72.43763
## 4050 21.676 72.43763
## 4051 21.676 72.43763
## 4052 21.676 72.43763
## 4053 21.676 72.43763
## 4054 21.676 72.43763
## 4055 21.676 72.43763
## 4056 21.676 72.43763
## 4057 21.676 72.43763
## 4058 21.676 72.43763
## 4059 21.676 72.43763
## 4060 21.676 72.43763
## 4061 21.676 72.43763
## 4062 21.676 72.43763
## 4063 21.676 72.43763
## 4064 21.676 72.43763
## 4065 12.760 72.00961
## 4066 12.760 72.00961
## 4067 12.760 72.00961
## 4068 12.760 72.00961
## 4069 12.760 72.00961
## 4070 12.760 72.00961
## 4071 12.760 72.00961
## 4072 12.760 72.00961
## 4073 12.760 72.00961
## 4074 12.760 72.00961
## 4075 12.760 72.00961
## 4076 12.760 72.00961
## 4077 12.760 72.00961
## 4078 12.760 72.00961
## 4079 12.760 72.00961
## 4080 12.760 72.00961
## 4081 11.987 73.13433
## 4082 11.987 73.13433
## 4083 11.987 73.13433
## 4084 11.987 73.13433
## 4085 11.987 73.13433
## 4086 11.987 73.13433
## 4087 11.987 73.13433
## 4088 11.987 73.13433
## 4089 11.987 73.13433
## 4090 11.987 73.13433
## 4091 11.987 73.13433
## 4092 11.987 73.13433
## 4093 11.987 73.13433
## 4094 11.987 73.13433
## 4095 11.987 73.13433
## 4096 11.987 73.13433
## 4097 10.897 68.82369
## 4098 10.897 68.82369
## 4099 10.897 68.82369
## 4100 10.897 68.82369
## 4101 10.897 68.82369
## 4102 10.897 68.82369
## 4103 10.897 68.82369
## 4104 10.897 68.82369
## 4105 10.897 68.82369
## 4106 10.897 68.82369
## 4107 10.897 68.82369
## 4108 10.897 68.82369
## 4109 10.897 68.82369
## 4110 10.897 68.82369
## 4111 10.897 68.82369
## 4112 10.897 68.82369
## 4113 12.135 71.22632
## 4114 12.135 71.22632
## 4115 12.135 71.22632
## 4116 12.135 71.22632
## 4117 12.135 71.22632
## 4118 12.135 71.22632
## 4119 12.135 71.22632
## 4120 12.135 71.22632
## 4121 12.135 71.22632
## 4122 12.135 71.22632
## 4123 12.135 71.22632
## 4124 12.135 71.22632
## 4125 12.135 71.22632
## 4126 12.135 71.22632
## 4127 12.135 71.22632
## 4128 12.135 71.22632
## 4129 15.665 69.29721
## 4130 15.665 69.29721
## 4131 15.665 69.29721
## 4132 15.665 69.29721
## 4133 15.665 69.29721
## 4134 15.665 69.29721
## 4135 15.665 69.29721
## 4136 15.665 69.29721
## 4137 15.665 69.29721
## 4138 15.665 69.29721
## 4139 15.665 69.29721
## 4140 15.665 69.29721
## 4141 15.665 69.29721
## 4142 15.665 69.29721
## 4143 15.665 69.29721
## 4144 15.665 69.29721
## 4145 26.280 63.80528
## 4146 26.280 63.80528
## 4147 26.280 63.80528
## 4148 26.280 63.80528
## 4149 26.280 63.80528
## 4150 26.280 63.80528
## 4151 26.280 63.80528
## 4152 26.280 63.80528
## 4153 26.280 63.80528
## 4154 26.280 63.80528
## 4155 26.280 63.80528
## 4156 26.280 63.80528
## 4157 26.280 63.80528
## 4158 26.280 63.80528
## 4159 26.280 63.80528
## 4160 26.280 63.80528
## 4161 12.730 72.43763
## 4162 12.730 72.43763
## 4163 12.730 72.43763
## 4164 12.730 72.43763
## 4165 12.730 72.43763
## 4166 12.730 72.43763
## 4167 12.730 72.43763
## 4168 12.730 72.43763
## 4169 12.730 72.43763
## 4170 12.730 72.43763
## 4171 12.730 72.43763
## 4172 12.730 72.43763
## 4173 12.730 72.43763
## 4174 12.730 72.43763
## 4175 12.730 72.43763
## 4176 12.730 72.43763
## 4177 26.308 66.71855
## 4178 26.308 66.71855
## 4179 26.308 66.71855
## 4180 26.308 66.71855
## 4181 26.308 66.71855
## 4182 26.308 66.71855
## 4183 26.308 66.71855
## 4184 26.308 66.71855
## 4185 26.308 66.71855
## 4186 26.308 66.71855
## 4187 26.308 66.71855
## 4188 26.308 66.71855
## 4189 26.308 66.71855
## 4190 26.308 66.71855
## 4191 26.308 66.71855
## 4192 26.308 66.71855
## 4193 22.588 62.71055
## 4194 22.588 62.71055
## 4195 22.588 62.71055
## 4196 22.588 62.71055
## 4197 22.588 62.71055
## 4198 22.588 62.71055
## 4199 22.588 62.71055
## 4200 22.588 62.71055
## 4201 22.588 62.71055
## 4202 22.588 62.71055
## 4203 22.588 62.71055
## 4204 22.588 62.71055
## 4205 22.588 62.71055
## 4206 22.588 62.71055
## 4207 22.588 62.71055
## 4208 22.588 62.71055
## 4209 14.238 69.97541
## 4210 14.238 69.97541
## 4211 14.238 69.97541
## 4212 14.238 69.97541
## 4213 14.238 69.97541
## 4214 14.238 69.97541
## 4215 14.238 69.97541
## 4216 14.238 69.97541
## 4217 14.238 69.97541
## 4218 14.238 69.97541
## 4219 14.238 69.97541
## 4220 14.238 69.97541
## 4221 14.238 69.97541
## 4222 14.238 69.97541
## 4223 14.238 69.97541
## 4224 14.238 69.97541
## 4225 14.894 69.04610
## 4226 14.894 69.04610
## 4227 14.894 69.04610
## 4228 14.894 69.04610
## 4229 14.894 69.04610
## 4230 14.894 69.04610
## 4231 14.894 69.04610
## 4232 14.894 69.04610
## 4233 14.894 69.04610
## 4234 14.894 69.04610
## 4235 14.894 69.04610
## 4236 14.894 69.04610
## 4237 14.894 69.04610
## 4238 14.894 69.04610
## 4239 14.894 69.04610
## 4240 14.894 69.04610
## 4241 28.503 61.21091
## 4242 28.503 61.21091
## 4243 28.503 61.21091
## 4244 28.503 61.21091
## 4245 28.503 61.21091
## 4246 28.503 61.21091
## 4247 28.503 61.21091
## 4248 28.503 61.21091
## 4249 28.503 61.21091
## 4250 28.503 61.21091
## 4251 28.503 61.21091
## 4252 28.503 61.21091
## 4253 28.503 61.21091
## 4254 28.503 61.21091
## 4255 28.503 61.21091
## 4256 28.503 61.21091
## 4257 19.227 67.34574
## 4258 19.227 67.34574
## 4259 19.227 67.34574
## 4260 19.227 67.34574
## 4261 19.227 67.34574
## 4262 19.227 67.34574
## 4263 19.227 67.34574
## 4264 19.227 67.34574
## 4265 19.227 67.34574
## 4266 19.227 67.34574
## 4267 19.227 67.34574
## 4268 19.227 67.34574
## 4269 19.227 67.34574
## 4270 19.227 67.34574
## 4271 19.227 67.34574
## 4272 19.227 67.34574
## 4273 7.180 68.57864
## 4274 7.180 68.57864
## 4275 7.180 68.57864
## 4276 7.180 68.57864
## 4277 7.180 68.57864
## 4278 7.180 68.57864
## 4279 7.180 68.57864
## 4280 7.180 68.57864
## 4281 7.180 68.57864
## 4282 7.180 68.57864
## 4283 7.180 68.57864
## 4284 7.180 68.57864
## 4285 7.180 68.57864
## 4286 7.180 68.57864
## 4287 7.180 68.57864
## 4288 7.180 68.57864
## 4289 14.410 69.07900
## 4290 14.410 69.07900
## 4291 14.410 69.07900
## 4292 14.410 69.07900
## 4293 14.410 69.07900
## 4294 14.410 69.07900
## 4295 14.410 69.07900
## 4296 14.410 69.07900
## 4297 14.410 69.07900
## 4298 14.410 69.07900
## 4299 14.410 69.07900
## 4300 14.410 69.07900
## 4301 14.410 69.07900
## 4302 14.410 69.07900
## 4303 14.410 69.07900
## 4304 14.410 69.07900
## 4305 16.707 78.59722
## 4306 16.707 78.59722
## 4307 16.707 78.59722
## 4308 16.707 78.59722
## 4309 16.707 78.59722
## 4310 16.707 78.59722
## 4311 16.707 78.59722
## 4312 16.707 78.59722
## 4313 16.707 78.59722
## 4314 16.707 78.59722
## 4315 16.707 78.59722
## 4316 16.707 78.59722
## 4317 16.707 78.59722
## 4318 16.707 78.59722
## 4319 16.707 78.59722
## 4320 16.707 78.59722
## 4321 8.459 72.03739
## 4322 8.459 72.03739
## 4323 8.459 72.03739
## 4324 8.459 72.03739
## 4325 8.459 72.03739
## 4326 8.459 72.03739
## 4327 8.459 72.03739
## 4328 8.459 72.03739
## 4329 8.459 72.03739
## 4330 8.459 72.03739
## 4331 8.459 72.03739
## 4332 8.459 72.03739
## 4333 8.459 72.03739
## 4334 8.459 72.03739
## 4335 8.459 72.03739
## 4336 8.459 72.03739
## 4337 8.358 71.86611
## 4338 8.358 71.86611
## 4339 8.358 71.86611
## 4340 8.358 71.86611
## 4341 8.358 71.86611
## 4342 8.358 71.86611
## 4343 8.358 71.86611
## 4344 8.358 71.86611
## 4345 8.358 71.86611
## 4346 8.358 71.86611
## 4347 8.358 71.86611
## 4348 8.358 71.86611
## 4349 8.358 71.86611
## 4350 8.358 71.86611
## 4351 8.358 71.86611
## 4352 8.358 71.86611
## 4353 8.684 63.44317
## 4354 8.684 63.44317
## 4355 8.684 63.44317
## 4356 8.684 63.44317
## 4357 8.684 63.44317
## 4358 8.684 63.44317
## 4359 8.684 63.44317
## 4360 8.684 63.44317
## 4361 8.684 63.44317
## 4362 8.684 63.44317
## 4363 8.684 63.44317
## 4364 8.684 63.44317
## 4365 8.684 63.44317
## 4366 8.684 63.44317
## 4367 8.684 63.44317
## 4368 8.684 63.44317
## 4369 16.600 70.20805
## 4370 16.600 70.20805
## 4371 16.600 70.20805
## 4372 16.600 70.20805
## 4373 16.600 70.20805
## 4374 16.600 70.20805
## 4375 16.600 70.20805
## 4376 16.600 70.20805
## 4377 16.600 70.20805
## 4378 16.600 70.20805
## 4379 16.600 70.20805
## 4380 16.600 70.20805
## 4381 16.600 70.20805
## 4382 16.600 70.20805
## 4383 16.600 70.20805
## 4384 16.600 70.20805
## 4385 21.306 64.76224
## 4386 21.306 64.76224
## 4387 21.306 64.76224
## 4388 21.306 64.76224
## 4389 21.306 64.76224
## 4390 21.306 64.76224
## 4391 21.306 64.76224
## 4392 21.306 64.76224
## 4393 21.306 64.76224
## 4394 21.306 64.76224
## 4395 21.306 64.76224
## 4396 21.306 64.76224
## 4397 21.306 64.76224
## 4398 21.306 64.76224
## 4399 21.306 64.76224
## 4400 21.306 64.76224
## 4401 17.347 68.85007
## 4402 17.347 68.85007
## 4403 17.347 68.85007
## 4404 17.347 68.85007
## 4405 17.347 68.85007
## 4406 17.347 68.85007
## 4407 17.347 68.85007
## 4408 17.347 68.85007
## 4409 17.347 68.85007
## 4410 17.347 68.85007
## 4411 17.347 68.85007
## 4412 17.347 68.85007
## 4413 17.347 68.85007
## 4414 17.347 68.85007
## 4415 17.347 68.85007
## 4416 17.347 68.85007
## 4417 9.258 68.99013
## 4418 9.258 68.99013
## 4419 9.258 68.99013
## 4420 9.258 68.99013
## 4421 9.258 68.99013
## 4422 9.258 68.99013
## 4423 9.258 68.99013
## 4424 9.258 68.99013
## 4425 9.258 68.99013
## 4426 9.258 68.99013
## 4427 9.258 68.99013
## 4428 9.258 68.99013
## 4429 9.258 68.99013
## 4430 9.258 68.99013
## 4431 9.258 68.99013
## 4432 9.258 68.99013
## 4433 8.188 71.98878
## 4434 8.188 71.98878
## 4435 8.188 71.98878
## 4436 8.188 71.98878
## 4437 8.188 71.98878
## 4438 8.188 71.98878
## 4439 8.188 71.98878
## 4440 8.188 71.98878
## 4441 8.188 71.98878
## 4442 8.188 71.98878
## 4443 8.188 71.98878
## 4444 8.188 71.98878
## 4445 8.188 71.98878
## 4446 8.188 71.98878
## 4447 8.188 71.98878
## 4448 8.188 71.98878
## 4449 20.426 60.24979
## 4450 20.426 60.24979
## 4451 20.426 60.24979
## 4452 20.426 60.24979
## 4453 20.426 60.24979
## 4454 20.426 60.24979
## 4455 20.426 60.24979
## 4456 20.426 60.24979
## 4457 20.426 60.24979
## 4458 20.426 60.24979
## 4459 20.426 60.24979
## 4460 20.426 60.24979
## 4461 20.426 60.24979
## 4462 20.426 60.24979
## 4463 20.426 60.24979
## 4464 20.426 60.24979
## 4465 19.028 65.79126
## 4466 19.028 65.79126
## 4467 19.028 65.79126
## 4468 19.028 65.79126
## 4469 19.028 65.79126
## 4470 19.028 65.79126
## 4471 19.028 65.79126
## 4472 19.028 65.79126
## 4473 19.028 65.79126
## 4474 19.028 65.79126
## 4475 19.028 65.79126
## 4476 19.028 65.79126
## 4477 19.028 65.79126
## 4478 19.028 65.79126
## 4479 19.028 65.79126
## 4480 19.028 65.79126
## 4481 12.566 62.43103
## 4482 12.566 62.43103
## 4483 12.566 62.43103
## 4484 12.566 62.43103
## 4485 12.566 62.43103
## 4486 12.566 62.43103
## 4487 12.566 62.43103
## 4488 12.566 62.43103
## 4489 12.566 62.43103
## 4490 12.566 62.43103
## 4491 12.566 62.43103
## 4492 12.566 62.43103
## 4493 12.566 62.43103
## 4494 12.566 62.43103
## 4495 12.566 62.43103
## 4496 12.566 62.43103
## 4497 18.929 61.02889
## 4498 18.929 61.02889
## 4499 18.929 61.02889
## 4500 18.929 61.02889
## 4501 18.929 61.02889
## 4502 18.929 61.02889
## 4503 18.929 61.02889
## 4504 18.929 61.02889
## 4505 18.929 61.02889
## 4506 18.929 61.02889
## 4507 18.929 61.02889
## 4508 18.929 61.02889
## 4509 18.929 61.02889
## 4510 18.929 61.02889
## 4511 18.929 61.02889
## 4512 18.929 61.02889
## 4513 13.124 64.00881
## 4514 13.124 64.00881
## 4515 13.124 64.00881
## 4516 13.124 64.00881
## 4517 13.124 64.00881
## 4518 13.124 64.00881
## 4519 13.124 64.00881
## 4520 13.124 64.00881
## 4521 13.124 64.00881
## 4522 13.124 64.00881
## 4523 13.124 64.00881
## 4524 13.124 64.00881
## 4525 13.124 64.00881
## 4526 13.124 64.00881
## 4527 13.124 64.00881
## 4528 13.124 64.00881
## 4529 13.678 70.61548
## 4530 13.678 70.61548
## 4531 13.678 70.61548
## 4532 13.678 70.61548
## 4533 13.678 70.61548
## 4534 13.678 70.61548
## 4535 13.678 70.61548
## 4536 13.678 70.61548
## 4537 13.678 70.61548
## 4538 13.678 70.61548
## 4539 13.678 70.61548
## 4540 13.678 70.61548
## 4541 13.678 70.61548
## 4542 13.678 70.61548
## 4543 13.678 70.61548
## 4544 13.678 70.61548
## 4545 15.040 60.92304
## 4546 15.040 60.92304
## 4547 15.040 60.92304
## 4548 15.040 60.92304
## 4549 15.040 60.92304
## 4550 15.040 60.92304
## 4551 15.040 60.92304
## 4552 15.040 60.92304
## 4553 15.040 60.92304
## 4554 15.040 60.92304
## 4555 15.040 60.92304
## 4556 15.040 60.92304
## 4557 15.040 60.92304
## 4558 15.040 60.92304
## 4559 15.040 60.92304
## 4560 15.040 60.92304
## 4561 21.061 61.64928
## 4562 21.061 61.64928
## 4563 21.061 61.64928
## 4564 21.061 61.64928
## 4565 21.061 61.64928
## 4566 21.061 61.64928
## 4567 21.061 61.64928
## 4568 21.061 61.64928
## 4569 21.061 61.64928
## 4570 21.061 61.64928
## 4571 21.061 61.64928
## 4572 21.061 61.64928
## 4573 21.061 61.64928
## 4574 21.061 61.64928
## 4575 21.061 61.64928
## 4576 21.061 61.64928
## 4577 14.267 62.17235
## 4578 14.267 62.17235
## 4579 14.267 62.17235
## 4580 14.267 62.17235
## 4581 14.267 62.17235
## 4582 14.267 62.17235
## 4583 14.267 62.17235
## 4584 14.267 62.17235
## 4585 14.267 62.17235
## 4586 14.267 62.17235
## 4587 14.267 62.17235
## 4588 14.267 62.17235
## 4589 14.267 62.17235
## 4590 14.267 62.17235
## 4591 14.267 62.17235
## 4592 14.267 62.17235
## 4593 31.314 62.85546
## 4594 31.314 62.85546
## 4595 31.314 62.85546
## 4596 31.314 62.85546
## 4597 31.314 62.85546
## 4598 31.314 62.85546
## 4599 31.314 62.85546
## 4600 31.314 62.85546
## 4601 31.314 62.85546
## 4602 31.314 62.85546
## 4603 31.314 62.85546
## 4604 31.314 62.85546
## 4605 31.314 62.85546
## 4606 31.314 62.85546
## 4607 31.314 62.85546
## 4608 31.314 62.85546
## 4609 25.890 65.81072
## 4610 25.890 65.81072
## 4611 25.890 65.81072
## 4612 25.890 65.81072
## 4613 25.890 65.81072
## 4614 25.890 65.81072
## 4615 25.890 65.81072
## 4616 25.890 65.81072
## 4617 25.890 65.81072
## 4618 25.890 65.81072
## 4619 25.890 65.81072
## 4620 25.890 65.81072
## 4621 25.890 65.81072
## 4622 25.890 65.81072
## 4623 25.890 65.81072
## 4624 25.890 65.81072
## 4625 13.225 63.74027
## 4626 13.225 63.74027
## 4627 13.225 63.74027
## 4628 13.225 63.74027
## 4629 13.225 63.74027
## 4630 13.225 63.74027
## 4631 13.225 63.74027
## 4632 13.225 63.74027
## 4633 13.225 63.74027
## 4634 13.225 63.74027
## 4635 13.225 63.74027
## 4636 13.225 63.74027
## 4637 13.225 63.74027
## 4638 13.225 63.74027
## 4639 13.225 63.74027
## 4640 13.225 63.74027
## 4641 13.238 70.24541
## 4642 13.238 70.24541
## 4643 13.238 70.24541
## 4644 13.238 70.24541
## 4645 13.238 70.24541
## 4646 13.238 70.24541
## 4647 13.238 70.24541
## 4648 13.238 70.24541
## 4649 13.238 70.24541
## 4650 13.238 70.24541
## 4651 13.238 70.24541
## 4652 13.238 70.24541
## 4653 13.238 70.24541
## 4654 13.238 70.24541
## 4655 13.238 70.24541
## 4656 13.238 70.24541
## 4657 11.276 72.98807
## 4658 11.276 72.98807
## 4659 11.276 72.98807
## 4660 11.276 72.98807
## 4661 11.276 72.98807
## 4662 11.276 72.98807
## 4663 11.276 72.98807
## 4664 11.276 72.98807
## 4665 11.276 72.98807
## 4666 11.276 72.98807
## 4667 11.276 72.98807
## 4668 11.276 72.98807
## 4669 11.276 72.98807
## 4670 11.276 72.98807
## 4671 11.276 72.98807
## 4672 11.276 72.98807
## 4673 10.804 67.64721
## 4674 10.804 67.64721
## 4675 10.804 67.64721
## 4676 10.804 67.64721
## 4677 10.804 67.64721
## 4678 10.804 67.64721
## 4679 10.804 67.64721
## 4680 10.804 67.64721
## 4681 10.804 67.64721
## 4682 10.804 67.64721
## 4683 10.804 67.64721
## 4684 10.804 67.64721
## 4685 10.804 67.64721
## 4686 10.804 67.64721
## 4687 10.804 67.64721
## 4688 10.804 67.64721
## 4689 7.944 72.83727
## 4690 7.944 72.83727
## 4691 7.944 72.83727
## 4692 7.944 72.83727
## 4693 7.944 72.83727
## 4694 7.944 72.83727
## 4695 7.944 72.83727
## 4696 7.944 72.83727
## 4697 7.944 72.83727
## 4698 7.944 72.83727
## 4699 7.944 72.83727
## 4700 7.944 72.83727
## 4701 7.944 72.83727
## 4702 7.944 72.83727
## 4703 7.944 72.83727
## 4704 7.944 72.83727
## 4705 8.833 71.99247
## 4706 8.833 71.99247
## 4707 8.833 71.99247
## 4708 8.833 71.99247
## 4709 8.833 71.99247
## 4710 8.833 71.99247
## 4711 8.833 71.99247
## 4712 8.833 71.99247
## 4713 8.833 71.99247
## 4714 8.833 71.99247
## 4715 8.833 71.99247
## 4716 8.833 71.99247
## 4717 8.833 71.99247
## 4718 8.833 71.99247
## 4719 8.833 71.99247
## 4720 8.833 71.99247
## 4721 9.395 74.64078
## 4722 9.395 74.64078
## 4723 9.395 74.64078
## 4724 9.395 74.64078
## 4725 9.395 74.64078
## 4726 9.395 74.64078
## 4727 9.395 74.64078
## 4728 9.395 74.64078
## 4729 9.395 74.64078
## 4730 9.395 74.64078
## 4731 9.395 74.64078
## 4732 9.395 74.64078
## 4733 9.395 74.64078
## 4734 9.395 74.64078
## 4735 9.395 74.64078
## 4736 9.395 74.64078
## 4737 9.511 75.81093
## 4738 9.511 75.81093
## 4739 9.511 75.81093
## 4740 9.511 75.81093
## 4741 9.511 75.81093
## 4742 9.511 75.81093
## 4743 9.511 75.81093
## 4744 9.511 75.81093
## 4745 9.511 75.81093
## 4746 9.511 75.81093
## 4747 9.511 75.81093
## 4748 9.511 75.81093
## 4749 9.511 75.81093
## 4750 9.511 75.81093
## 4751 9.511 75.81093
## 4752 9.511 75.81093
## 4753 11.276 72.98807
## 4754 11.276 72.98807
## 4755 11.276 72.98807
## 4756 11.276 72.98807
## 4757 11.276 72.98807
## 4758 11.276 72.98807
## 4759 11.276 72.98807
## 4760 11.276 72.98807
## 4761 11.276 72.98807
## 4762 11.276 72.98807
## 4763 11.276 72.98807
## 4764 11.276 72.98807
## 4765 11.276 72.98807
## 4766 11.276 72.98807
## 4767 11.276 72.98807
## 4768 11.276 72.98807
## 4769 12.012 65.58660
## 4770 12.012 65.58660
## 4771 12.012 65.58660
## 4772 12.012 65.58660
## 4773 12.012 65.58660
## 4774 12.012 65.58660
## 4775 12.012 65.58660
## 4776 12.012 65.58660
## 4777 12.012 65.58660
## 4778 12.012 65.58660
## 4779 12.012 65.58660
## 4780 12.012 65.58660
## 4781 12.012 65.58660
## 4782 12.012 65.58660
## 4783 12.012 65.58660
## 4784 12.012 65.58660
## 4785 14.943 61.46217
## 4786 14.943 61.46217
## 4787 14.943 61.46217
## 4788 14.943 61.46217
## 4789 14.943 61.46217
## 4790 14.943 61.46217
## 4791 14.943 61.46217
## 4792 14.943 61.46217
## 4793 14.943 61.46217
## 4794 14.943 61.46217
## 4795 14.943 61.46217
## 4796 14.943 61.46217
## 4797 14.943 61.46217
## 4798 14.943 61.46217
## 4799 14.943 61.46217
## 4800 14.943 61.46217
## 4801 8.066 66.74242
## 4802 8.066 66.74242
## 4803 8.066 66.74242
## 4804 8.066 66.74242
## 4805 8.066 66.74242
## 4806 8.066 66.74242
## 4807 8.066 66.74242
## 4808 8.066 66.74242
## 4809 8.066 66.74242
## 4810 8.066 66.74242
## 4811 8.066 66.74242
## 4812 8.066 66.74242
## 4813 8.066 66.74242
## 4814 8.066 66.74242
## 4815 8.066 66.74242
## 4816 8.066 66.74242
## 4817 11.896 61.67427
## 4818 11.896 61.67427
## 4819 11.896 61.67427
## 4820 11.896 61.67427
## 4821 11.896 61.67427
## 4822 11.896 61.67427
## 4823 11.896 61.67427
## 4824 11.896 61.67427
## 4825 11.896 61.67427
## 4826 11.896 61.67427
## 4827 11.896 61.67427
## 4828 11.896 61.67427
## 4829 11.896 61.67427
## 4830 11.896 61.67427
## 4831 11.896 61.67427
## 4832 11.896 61.67427
## 4833 7.494 76.26959
## 4834 7.494 76.26959
## 4835 7.494 76.26959
## 4836 7.494 76.26959
## 4837 7.494 76.26959
## 4838 7.494 76.26959
## 4839 7.494 76.26959
## 4840 7.494 76.26959
## 4841 7.494 76.26959
## 4842 7.494 76.26959
## 4843 7.494 76.26959
## 4844 7.494 76.26959
## 4845 7.494 76.26959
## 4846 7.494 76.26959
## 4847 7.494 76.26959
## 4848 7.494 76.26959
## 4849 10.804 67.64721
## 4850 10.804 67.64721
## 4851 10.804 67.64721
## 4852 10.804 67.64721
## 4853 10.804 67.64721
## 4854 10.804 67.64721
## 4855 10.804 67.64721
## 4856 10.804 67.64721
## 4857 10.804 67.64721
## 4858 10.804 67.64721
## 4859 10.804 67.64721
## 4860 10.804 67.64721
## 4861 10.804 67.64721
## 4862 10.804 67.64721
## 4863 10.804 67.64721
## 4864 10.804 67.64721
## 4865 17.907 62.24539
## 4866 17.907 62.24539
## 4867 17.907 62.24539
## 4868 17.907 62.24539
## 4869 17.907 62.24539
## 4870 17.907 62.24539
## 4871 17.907 62.24539
## 4872 17.907 62.24539
## 4873 17.907 62.24539
## 4874 17.907 62.24539
## 4875 17.907 62.24539
## 4876 17.907 62.24539
## 4877 17.907 62.24539
## 4878 17.907 62.24539
## 4879 17.907 62.24539
## 4880 17.907 62.24539
## 4881 23.540 62.55421
## 4882 23.540 62.55421
## 4883 23.540 62.55421
## 4884 23.540 62.55421
## 4885 23.540 62.55421
## 4886 23.540 62.55421
## 4887 23.540 62.55421
## 4888 23.540 62.55421
## 4889 23.540 62.55421
## 4890 23.540 62.55421
## 4891 23.540 62.55421
## 4892 23.540 62.55421
## 4893 23.540 62.55421
## 4894 23.540 62.55421
## 4895 23.540 62.55421
## 4896 23.540 62.55421
## 4897 14.119 65.19988
## 4898 14.119 65.19988
## 4899 14.119 65.19988
## 4900 14.119 65.19988
## 4901 14.119 65.19988
## 4902 14.119 65.19988
## 4903 14.119 65.19988
## 4904 14.119 65.19988
## 4905 14.119 65.19988
## 4906 14.119 65.19988
## 4907 14.119 65.19988
## 4908 14.119 65.19988
## 4909 14.119 65.19988
## 4910 14.119 65.19988
## 4911 14.119 65.19988
## 4912 14.119 65.19988
## 4913 11.728 68.13790
## 4914 11.728 68.13790
## 4915 11.728 68.13790
## 4916 11.728 68.13790
## 4917 11.728 68.13790
## 4918 11.728 68.13790
## 4919 11.728 68.13790
## 4920 11.728 68.13790
## 4921 11.728 68.13790
## 4922 11.728 68.13790
## 4923 11.728 68.13790
## 4924 11.728 68.13790
## 4925 11.728 68.13790
## 4926 11.728 68.13790
## 4927 11.728 68.13790
## 4928 11.728 68.13790
## 4929 12.005 74.14838
## 4930 12.005 74.14838
## 4931 12.005 74.14838
## 4932 12.005 74.14838
## 4933 12.005 74.14838
## 4934 12.005 74.14838
## 4935 12.005 74.14838
## 4936 12.005 74.14838
## 4937 12.005 74.14838
## 4938 12.005 74.14838
## 4939 12.005 74.14838
## 4940 12.005 74.14838
## 4941 12.005 74.14838
## 4942 12.005 74.14838
## 4943 12.005 74.14838
## 4944 12.005 74.14838
## 4945 17.594 63.92343
## 4946 17.594 63.92343
## 4947 17.594 63.92343
## 4948 17.594 63.92343
## 4949 17.594 63.92343
## 4950 17.594 63.92343
## 4951 17.594 63.92343
## 4952 17.594 63.92343
## 4953 17.594 63.92343
## 4954 17.594 63.92343
## 4955 17.594 63.92343
## 4956 17.594 63.92343
## 4957 17.594 63.92343
## 4958 17.594 63.92343
## 4959 17.594 63.92343
## 4960 17.594 63.92343
## 4961 18.638 71.49589
## 4962 18.638 71.49589
## 4963 18.638 71.49589
## 4964 18.638 71.49589
## 4965 18.638 71.49589
## 4966 18.638 71.49589
## 4967 18.638 71.49589
## 4968 18.638 71.49589
## 4969 18.638 71.49589
## 4970 18.638 71.49589
## 4971 18.638 71.49589
## 4972 18.638 71.49589
## 4973 18.638 71.49589
## 4974 18.638 71.49589
## 4975 18.638 71.49589
## 4976 18.638 71.49589
## 4977 14.085 68.94020
## 4978 14.085 68.94020
## 4979 14.085 68.94020
## 4980 14.085 68.94020
## 4981 14.085 68.94020
## 4982 14.085 68.94020
## 4983 14.085 68.94020
## 4984 14.085 68.94020
## 4985 14.085 68.94020
## 4986 14.085 68.94020
## 4987 14.085 68.94020
## 4988 14.085 68.94020
## 4989 14.085 68.94020
## 4990 14.085 68.94020
## 4991 14.085 68.94020
## 4992 14.085 68.94020
## 4993 18.940 66.25621
## 4994 18.940 66.25621
## 4995 18.940 66.25621
## 4996 18.940 66.25621
## 4997 18.940 66.25621
## 4998 18.940 66.25621
## 4999 18.940 66.25621
## 5000 18.940 66.25621
## 5001 18.940 66.25621
## 5002 18.940 66.25621
## 5003 18.940 66.25621
## 5004 18.940 66.25621
## 5005 18.940 66.25621
## 5006 18.940 66.25621
## 5007 18.940 66.25621
## 5008 18.940 66.25621
## 5009 9.890 73.63757
## 5010 9.890 73.63757
## 5011 9.890 73.63757
## 5012 9.890 73.63757
## 5013 9.890 73.63757
## 5014 9.890 73.63757
## 5015 9.890 73.63757
## 5016 9.890 73.63757
## 5017 9.890 73.63757
## 5018 9.890 73.63757
## 5019 9.890 73.63757
## 5020 9.890 73.63757
## 5021 9.890 73.63757
## 5022 9.890 73.63757
## 5023 9.890 73.63757
## 5024 9.890 73.63757
## 5025 7.747 74.97539
## 5026 7.747 74.97539
## 5027 7.747 74.97539
## 5028 7.747 74.97539
## 5029 7.747 74.97539
## 5030 7.747 74.97539
## 5031 7.747 74.97539
## 5032 7.747 74.97539
## 5033 7.747 74.97539
## 5034 7.747 74.97539
## 5035 7.747 74.97539
## 5036 7.747 74.97539
## 5037 7.747 74.97539
## 5038 7.747 74.97539
## 5039 7.747 74.97539
## 5040 7.747 74.97539
## 5041 17.012 66.82979
## 5042 17.012 66.82979
## 5043 17.012 66.82979
## 5044 17.012 66.82979
## 5045 17.012 66.82979
## 5046 17.012 66.82979
## 5047 17.012 66.82979
## 5048 17.012 66.82979
## 5049 17.012 66.82979
## 5050 17.012 66.82979
## 5051 17.012 66.82979
## 5052 17.012 66.82979
## 5053 17.012 66.82979
## 5054 17.012 66.82979
## 5055 17.012 66.82979
## 5056 17.012 66.82979
## 5057 11.697 67.89189
## 5058 11.697 67.89189
## 5059 11.697 67.89189
## 5060 11.697 67.89189
## 5061 11.697 67.89189
## 5062 11.697 67.89189
## 5063 11.697 67.89189
## 5064 11.697 67.89189
## 5065 11.697 67.89189
## 5066 11.697 67.89189
## 5067 11.697 67.89189
## 5068 11.697 67.89189
## 5069 11.697 67.89189
## 5070 11.697 67.89189
## 5071 11.697 67.89189
## 5072 11.697 67.89189
## 5073 16.066 70.96836
## 5074 16.066 70.96836
## 5075 16.066 70.96836
## 5076 16.066 70.96836
## 5077 16.066 70.96836
## 5078 16.066 70.96836
## 5079 16.066 70.96836
## 5080 16.066 70.96836
## 5081 16.066 70.96836
## 5082 16.066 70.96836
## 5083 16.066 70.96836
## 5084 16.066 70.96836
## 5085 16.066 70.96836
## 5086 16.066 70.96836
## 5087 16.066 70.96836
## 5088 16.066 70.96836
## 5089 22.524 67.49415
## 5090 22.524 67.49415
## 5091 22.524 67.49415
## 5092 22.524 67.49415
## 5093 22.524 67.49415
## 5094 22.524 67.49415
## 5095 22.524 67.49415
## 5096 22.524 67.49415
## 5097 22.524 67.49415
## 5098 22.524 67.49415
## 5099 22.524 67.49415
## 5100 22.524 67.49415
## 5101 22.524 67.49415
## 5102 22.524 67.49415
## 5103 22.524 67.49415
## 5104 22.524 67.49415
## 5105 20.414 69.86157
## 5106 20.414 69.86157
## 5107 20.414 69.86157
## 5108 20.414 69.86157
## 5109 20.414 69.86157
## 5110 20.414 69.86157
## 5111 20.414 69.86157
## 5112 20.414 69.86157
## 5113 20.414 69.86157
## 5114 20.414 69.86157
## 5115 20.414 69.86157
## 5116 20.414 69.86157
## 5117 20.414 69.86157
## 5118 20.414 69.86157
## 5119 20.414 69.86157
## 5120 20.414 69.86157
## 5121 15.766 64.70503
## 5122 15.766 64.70503
## 5123 15.766 64.70503
## 5124 15.766 64.70503
## 5125 15.766 64.70503
## 5126 15.766 64.70503
## 5127 15.766 64.70503
## 5128 15.766 64.70503
## 5129 15.766 64.70503
## 5130 15.766 64.70503
## 5131 15.766 64.70503
## 5132 15.766 64.70503
## 5133 15.766 64.70503
## 5134 15.766 64.70503
## 5135 15.766 64.70503
## 5136 15.766 64.70503
## 5137 22.437 69.83123
## 5138 22.437 69.83123
## 5139 22.437 69.83123
## 5140 22.437 69.83123
## 5141 22.437 69.83123
## 5142 22.437 69.83123
## 5143 22.437 69.83123
## 5144 22.437 69.83123
## 5145 22.437 69.83123
## 5146 22.437 69.83123
## 5147 22.437 69.83123
## 5148 22.437 69.83123
## 5149 22.437 69.83123
## 5150 22.437 69.83123
## 5151 22.437 69.83123
## 5152 22.437 69.83123
# first prepare data, we join shapefile to make sure order is the same and create ID for time and one for space
#Join the data with the shapefile so the order of the shapefile is maintained.
RESP_DATA_ST = left_join(shape_file, RESP_DATA, by="lad09cd")
#Rename the columns of Observed and Expected as we did before
RESP_DATA_ST = RESP_DATA_ST %>% dplyr::rename(O = Y, E = E)
#Create the ID for year (time)
RESP_DATA_ST$ID.time = RESP_DATA_ST$Year_death - 2002
#Create the ID for space
RESP_DATA_ST$ID.space = rep(seq(1,322),each=16)
# run the model in INLA
formula_ST_noint = O ~ f(ID.space, model="bym2", graph=shape.adj,
hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01)),
phi = list(
prior = "pc",
param = c(0.5, 2 / 3)))) + f(ID.time,model="rw1", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))
stBYM.model = inla(formula=formula_ST_noint, family="poisson",
data=RESP_DATA_ST, E=E,
control.compute=list(waic=TRUE))
# create the posterior mean for the spatial and temporal effects
RR_stBYM = c()
for(i in 1:322){
RR_stBYM[i] = inla.emarginal(function(x) exp(x),
stBYM.model$marginals.random$ID.space[[i]])
}
#Posterior probabilities (for spatial RR)
RR_stBYM_marg = stBYM.model$marginals.random$ID.space[1:322]
PP_stBYM = lapply(RR_stBYM_marg, function(x) {1-inla.pmarginal(0,x)})
#Temporal Relative risks and CI95
RR_stRW_RR = c()
RR_stRW_lo = c()
RR_stRW_hi = c()
for(i in 1:16){
#Posterior mean
RR_stRW_RR[i] = inla.emarginal(function(x) exp(x),
stBYM.model$marginals.random$ID.time[[i]])
#2.5% quantile
RR_stRW_lo[i] = inla.qmarginal(0.025,inla.tmarginal(function(x) exp(x), stBYM.model$marginals.random$ID.time[[i]]))
#97.5% quantile
RR_stRW_hi[i] = inla.qmarginal(0.975, inla.tmarginal(function(x) exp(x), stBYM.model$marginals.random$ID.time[[i]]))
}
RR_stRW = data.frame(RR=RR_stRW_RR,low=RR_stRW_lo,high=RR_stRW_hi)
# plot the temporal residuals
Temp1 = ggplot(RR_stRW, aes(seq(2002,2017), RR)) + geom_line() + ggtitle("ST model No Int") + geom_ribbon(aes(ymin=low,ymax=high), alpha=0.2) + labs(x="year")
Temp1
# Data Check
typeof(shape.adj)
## [1] "character"
# map the spatial residuals RRs with ggplot2. Compare this map of residual RR obtained from spatial model
resRR_PP_st = data.frame(resRR=RR_stBYM,
PP=unlist(PP_stBYM),
SP_ID=RESP_DATAagg[,1])
# breakpoints
resRR_PP_st$resRRcat = cut(resRR_PP_st$resRR, breaks=c(min(resRR_PP_st$resRR),
0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6,
max(resRR_PP_st$resRR)),include.lowest = T)
resRR_PP_st$PPcat = cut(resRR_PP_st$PP, c(0, 0.2, 0.8, 1.00), include.lowest = TRUE)
map_RR_ST = left_join(shape_file, resRR_PP_st, by = c("lad09cd" = "lad09cd"))
p3 = ggplot() + geom_sf(data = map_RR_ST, color = NA) + aes(fill = resRRcat) +
theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title="RR")) + ggtitle("RR ST model") +
theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p4 = ggplot() + geom_sf(data = map_RR_ST, color = NA) + aes(fill = PPcat) +
theme_bw() +
scale_fill_viridis(
option = "plasma",
name = "PP",
discrete = T,
direction = -1,
guide = guide_legend(
title.position = 'top',
reverse = T
)) + ggtitle("PP ST model") + theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
# (p1|p2) / (p3|p4)
# next steps are to add deprivation and physical activity
# make sure they are standardised
RESP_DATA_ST = RESP_DATA_ST %>%
mutate(deprivation_s = scale(Deprivation),
physact_s = scale(PhysicalActivity))
RESP_DATA_ST
## Simple feature collection with 5152 features and 18 fields
## Geometry type: MULTIPOLYGON
## Dimension: XY
## Bounding box: xmin: 131950.4 ymin: 11073.5 xmax: 655989 ymax: 657599.5
## Projected CRS: OSGB36 / British National Grid
## First 10 features:
## objectid lad09cd lad09nm lad09nmw st_areasha st_lengths Name.x Year
## 1 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 2 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 3 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 4 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 5 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 6 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 7 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 8 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 9 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## 10 3 00AC Barnet <NA> 86742395 50795.7 Barnet LB 2002
## Name.y Year_death O E Deprivation PhysicalActivity
## 1 Barnet LB 2002 270 173.1231 16.148 59.92501
## 2 Barnet LB 2003 265 172.5862 16.148 59.92501
## 3 Barnet LB 2004 230 175.5757 16.148 59.92501
## 4 Barnet LB 2005 245 176.3990 16.148 59.92501
## 5 Barnet LB 2006 190 179.0505 16.148 59.92501
## 6 Barnet LB 2007 210 180.4820 16.148 59.92501
## 7 Barnet LB 2008 260 181.3748 16.148 59.92501
## 8 Barnet LB 2009 220 181.0381 16.148 59.92501
## 9 Barnet LB 2010 210 186.8414 16.148 59.92501
## 10 Barnet LB 2011 160 189.2824 16.148 59.92501
## geometry ID.time ID.space deprivation_s physact_s
## 1 MULTIPOLYGON (((525814.1 19... 0 1 -0.4298358 -1.346497
## 2 MULTIPOLYGON (((525814.1 19... 1 1 -0.4298358 -1.346497
## 3 MULTIPOLYGON (((525814.1 19... 2 1 -0.4298358 -1.346497
## 4 MULTIPOLYGON (((525814.1 19... 3 1 -0.4298358 -1.346497
## 5 MULTIPOLYGON (((525814.1 19... 4 1 -0.4298358 -1.346497
## 6 MULTIPOLYGON (((525814.1 19... 5 1 -0.4298358 -1.346497
## 7 MULTIPOLYGON (((525814.1 19... 6 1 -0.4298358 -1.346497
## 8 MULTIPOLYGON (((525814.1 19... 7 1 -0.4298358 -1.346497
## 9 MULTIPOLYGON (((525814.1 19... 8 1 -0.4298358 -1.346497
## 10 MULTIPOLYGON (((525814.1 19... 9 1 -0.4298358 -1.346497
# Preparing cat variables for sensitivity
summary(RESP_DATA_ST$Deprivation)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 5.544 12.958 18.153 19.631 25.613 45.039
summary(RESP_DATA_ST$PhysicalActivity)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 54.81 62.69 66.52 66.50 70.21 78.60
# Binary thresholds for defining deprivation and physical activity as categorical variables - values determined by quartiles (3rd quartile = threshold)
RESP_DATA_ST$physact_cat <- ifelse(RESP_DATA_ST$PhysicalActivity > 70, "Top 25% Most Active", "Remaining")
RESP_DATA_ST$deprivation_cat <- ifelse(RESP_DATA_ST$Deprivation > 25.6, "Top 20% Deprived", "Remaining")
# update model formula - spatial temporal model no interactions, but with covariates
formula_cov <- O ~ deprivation_s + physact_s +
f(ID.space, model="bym2", graph=shape.adj,
hyper=list(
prec = list(prior="pc.prec", param=c(0.5/0.31, 0.01)),
phi = list(prior="pc", param=c(0.5, 2/3))
)) +
f(ID.time, model="rw1",
hyper=list(
prec = list(prior="pc.prec", param=c(0.5/0.31, 0.01))
))
# refit in INLA and compare WAIC
stBYM_cov <- inla(
formula_cov,
family="poisson",
data=RESP_DATA_ST,
E=E,
control.compute=list(waic=TRUE)
)
stBYM_cov$waic$waic
## [1] 42885.39
# Comparing WAIC between adjusted and unadjusted models
cat("No‑covariate WAIC =", stBYM.model$waic$waic, "\n",
"Covariate‑adjusted WAIC =", stBYM_cov$waic$waic, "\n")
## No‑covariate WAIC = 42893.9
## Covariate‑adjusted WAIC = 42885.39
fixed <- stBYM_cov$summary.fixed[, c("mean","0.025quant","0.975quant")]
fixed_rr <- exp(fixed)
rownames(fixed_rr) <- c("Intercept","Deprivation (1 SD)","Physical activity (1 SD)")
round(fixed_rr, 3)
## mean 0.025quant 0.975quant
## Intercept 0.974 0.965 0.982
## Deprivation (1 SD) 1.077 1.058 1.097
## Physical activity (1 SD) 0.997 0.981 1.014
RR_cov <- sapply(stBYM_cov$marginals.random$ID.space,
function(m) inla.emarginal(function(x) exp(x), m))
PP_cov <- sapply(stBYM_cov$marginals.random$ID.space,
function(m) 1 - inla.pmarginal(0, m))
res_cov <- data.frame(lad09cd=unique(RESP_DATAagg$lad09cd), resRR=RR_cov, PP=PP_cov)
res_cov$resRRcat <- cut(res_cov$resRR, breaks=c(min(res_cov$resRR),0.4,0.6,0.8,1,1.2,1.4,1.6,max(res_cov$resRR)), include.lowest=TRUE)
res_cov$PPcat <- cut(res_cov$PP, breaks=c(0,0.2,0.8,1), include.lowest=TRUE)
map_cov <- left_join(shape_file, res_cov, by="lad09cd")
p5 <- ggplot(map_cov) + geom_sf(aes(fill=resRRcat), color = NA) +
theme_bw() + scale_fill_brewer(palette="PuOr") +
guides(fill=guide_legend(title="RR", theme = theme(legend.title = element_text(size = 12)))) + ggtitle("RR ST model - with covariates") +
theme(text = element_text(size=14),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p6 <- ggplot(map_cov) + geom_sf(aes(fill=PPcat), color = NA) +
theme_bw() +
scale_fill_viridis(
option = "plasma",
name = "PP",
discrete = T,
direction = -1,
guide = guide_legend(
title.position = 'top',
reverse = T
)) + ggtitle("PP ST model - with covariates") + theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
# (p5|p6)
# temporal analysis as well
temporal <- data.frame(
year = 2002:2017,
RR = sapply(stBYM_cov$marginals.random$ID.time,
function(m) inla.emarginal(function(x) exp(x), m)),
low = sapply(stBYM_cov$marginals.random$ID.time,
function(m) exp(inla.qmarginal(0.025, m))),
high = sapply(stBYM_cov$marginals.random$ID.time,
function(m) exp(inla.qmarginal(0.975, m)))
)
ggplot(temporal, aes(year, RR)) +
geom_line() +
geom_ribbon(aes(ymin=low, ymax=high), alpha=0.2) +
labs(title="Temporal residual RR — ST model w/ covariates", x="Year", y="Relative risk") +
theme_minimal()
RESP_DATA_ST$ID.space.time = seq(1,dim(RESP_DATA_ST)[1])
formula_ST_intI = O ~ f(ID.space, model="bym2", graph=shape.adj,
hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01)),
phi = list(
prior = "pc",
param = c(0.5, 2 / 3)))) +
f(ID.time,model="rw1", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))+
f(ID.space.time,model="iid", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))
stIntI.BYM.model = inla(formula=formula_ST_intI, family="poisson", data=RESP_DATA_ST, E=E,
control.compute=list(dic=TRUE, waic=TRUE))
Create the posterior mean for the spatial and temporal effects and compare with the ST model results without interaction
#Spatial Relative risks
RR_stIntI.BYM = c()
for(i in 1:322){
RR_stIntI.BYM[i] = inla.emarginal(function(x) exp(x),
stIntI.BYM.model$marginals.random$ID.space[[i]])
}
#Posterior probabilities (for spatial RR)
RR_stIntI.BYM_marg = stIntI.BYM.model$marginals.random$ID.space[1:322]
PP_stIntI.BYM = lapply(RR_stIntI.BYM_marg, function(x) {1-inla.pmarginal(0,x)})
#Temporal Relative risks and CI95
RR_stIntI.RW_RR = c()
RR_stIntI.RW_lo = c()
RR_stIntI.RW_hi = c()
for(i in 1:16){
#Posterior mean
RR_stIntI.RW_RR[i] = inla.emarginal(function(x) exp(x),
stIntI.BYM.model$marginals.random$ID.time[[i]])
#2.5% quantile
RR_stIntI.RW_lo[i] = inla.qmarginal(0.025,inla.tmarginal(function(x) exp(x), stIntI.BYM.model$marginals.random$ID.time[[i]]))
#97.5% quantile
RR_stIntI.RW_hi[i] = inla.qmarginal(0.975, inla.tmarginal(function(x) exp(x), stIntI.BYM.model$marginals.random$ID.time[[i]]))
}
RR_stIntI.RW = data.frame(RR=RR_stIntI.RW_RR,low=RR_stIntI.RW_lo,high=RR_stIntI.RW_hi)
Plot the temporal residual RRs (RR_stWR)
Temp2 = ggplot(RR_stIntI.RW, aes(seq(2002,2017), RR)) + geom_line() + ggtitle("ST model Int I") + geom_ribbon(aes(ymin=low,ymax=high), alpha=0.2) + labs(x="year")
Temp1 | Temp2
# Temp2 = ggplot(RR_stIntI.RW, aes(seq(2002,2017), RR)) + geom_line() + ggtitle("ST model Int I") + geom_ribbon(aes(ymin=low,ymax=high), alpha=0.2) + labs(x="year")
#
# Temp2
resRR_PP_stIntI = data.frame(resRR=RR_stIntI.BYM,
PP=unlist(PP_stIntI.BYM),
SP_ID=RESP_DATAagg[,1])
# breakpoints
resRR_PP_stIntI$resRRcat = cut(resRR_PP_stIntI$resRR, breaks=c(min(resRR_PP_stIntI$resRR),
0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6,
max(resRR_PP_stIntI$resRR)),include.lowest = T)
resRR_PP_stIntI$PPcat = cut(resRR_PP_stIntI$PP, c(0, 0.2, 0.8, 1.00), include.lowest = TRUE)
map_RR_ST.IntI = left_join(shape_file, resRR_PP_stIntI, by = c("lad09cd" = "lad09cd"))
p7 = ggplot() + geom_sf(data = map_RR_ST.IntI, color = NA) + aes(fill = resRRcat) +
theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title="RR")) + ggtitle("RR ST model Int I") +
theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p8 = ggplot() + geom_sf(data = map_RR_ST.IntI, color = NA) + aes(fill = PPcat) +
theme_bw() +
scale_fill_viridis(
option = "plasma",
name = "PP ST model Int I",
discrete = T,
direction = -1,
guide = guide_legend(
title.position = 'top',
reverse = T
)) + ggtitle("PP ST model Int I") + theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
Plot the space-time interaction
RESP_DATA_ST$intI = stIntI.BYM.model$summary.random$ID.space.time$mean
RESP_DATA_ST$intI_cat = cut(RESP_DATA_ST$intI, breaks=c(-1,-0.05,
-0.01, 0.01, 0.05, 1),include.lowest = T)
ggplot() +
geom_sf(data = RESP_DATA_ST, aes(fill = intI_cat), color = NA)+ theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title=NULL)) +
theme(text = element_text(size=20),
axis.text.x = element_blank(),
axis.text.y = element_blank()) +
facet_wrap(~ ID.time, ncol =8, labeller=labeller(ID.time=c("0"="2002","1"="2003","2"="2004","3"="2005","4"="2006","5"="2007","6"="2008","7"="2009","8"="2010","9"="2011", "10"="2012","11"="2013","12"="2014","13"="2015", "14"="2016","15"="2017"))) +
labs("")
no clear pattern
Hyperparameter table
dat.hyper2 =
round(
data.frame(median = stIntI.BYM.model$summary.hyperpar[,4],
LL = stIntI.BYM.model$summary.hyperpar[,3],
UL = stIntI.BYM.model$summary.hyperpar[,5]),
digits = 3)
row.names(dat.hyper2) =
rownames(stIntI.BYM.model$summary.hyperpar)
knitr::kable(dat.hyper2, caption = "Posterior median and 95% CrI of hyperparameters.") %>% kable_styling(bootstrap_options = "striped", full_width = F, position = "center")
| median | LL | UL | |
|---|---|---|---|
| Precision for ID.space | 34.456 | 26.577 | 43.489 |
| Phi for ID.space | 0.768 | 0.559 | 0.912 |
| Precision for ID.time | 119.723 | 54.735 | 247.875 |
| Precision for ID.space.time | 85.537 | 78.853 | 92.820 |
RESP_DATA_ST$ID.space.time = seq(1,dim(RESP_DATA_ST)[1])
formula_ST_intI_cov = O ~ deprivation_s + physact_s +
f(ID.space, model="bym2", graph=shape.adj,
hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01)),
phi = list(
prior = "pc",
param = c(0.5, 2 / 3)))) +
f(ID.time,model="rw1", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))+
f(ID.space.time,model="iid", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))
stIntI.BYM.model_cov = inla(formula=formula_ST_intI_cov, family="poisson", data=RESP_DATA_ST, E=E,
control.compute=list(dic=TRUE, waic=TRUE))
Create the posterior mean for the spatial and temporal effects and compare with the ST model results without interaction
#Spatial Relative risks
RR_stIntI.BYM_cov = c()
for(i in 1:322){
RR_stIntI.BYM_cov[i] = inla.emarginal(function(x) exp(x),
stIntI.BYM.model_cov$marginals.random$ID.space[[i]])
}
#Posterior probabilities (for spatial RR)
RR_stIntI.BYM_cov_marg = stIntI.BYM.model_cov$marginals.random$ID.space[1:322]
PP_stIntI.BYM_cov = lapply(RR_stIntI.BYM_cov_marg, function(x) {1-inla.pmarginal(0,x)})
#Temporal Relative risks and CI95
RR_stIntI_cov.RW_RR = c()
RR_stIntI_cov.RW_lo = c()
RR_stIntI_cov.RW_hi = c()
for(i in 1:16){
#Posterior mean
RR_stIntI_cov.RW_RR[i] = inla.emarginal(function(x) exp(x),
stIntI.BYM.model_cov$marginals.random$ID.time[[i]])
#2.5% quantile
RR_stIntI_cov.RW_lo[i] = inla.qmarginal(0.025, inla.tmarginal(function(x) exp(x), stIntI.BYM.model_cov$marginals.random$ID.time[[i]]))
#97.5% quantile
RR_stIntI_cov.RW_hi[i] = inla.qmarginal(0.975, inla.tmarginal(function(x) exp(x), stIntI.BYM.model_cov$marginals.random$ID.time[[i]]))
}
RR_stIntI_cov.RW = data.frame(RR=RR_stIntI_cov.RW_RR,low=RR_stIntI_cov.RW_lo,high=RR_stIntI_cov.RW_hi)
Plot the temporal residual RRs (RR_stWR)
Temp3 = ggplot(RR_stIntI_cov.RW, aes(seq(2002,2017), RR)) + geom_line() + ggtitle("ST model Int I Covars") + geom_ribbon(aes(ymin=low,ymax=high), alpha=0.2) + labs(x="year")
Temp1 | Temp2 | Temp3
# Temp2 = ggplot(RR_stIntI.RW, aes(seq(2002,2017), RR)) + geom_line() + ggtitle("ST model Int I") + geom_ribbon(aes(ymin=low,ymax=high), alpha=0.2) + labs(x="year")
#
# Temp2
resRR_PP_stIntI_cov = data.frame(resRR=RR_stIntI.BYM_cov,
PP=unlist(PP_stIntI.BYM_cov),
SP_ID=RESP_DATAagg[,1])
# breakpoints
resRR_PP_stIntI_cov$resRRcat = cut(resRR_PP_stIntI_cov$resRR, breaks=c(min(resRR_PP_stIntI_cov$resRR),
0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6,
max(resRR_PP_stIntI_cov$resRR)),include.lowest = T)
resRR_PP_stIntI_cov$PPcat = cut(resRR_PP_stIntI_cov$PP, c(0, 0.2, 0.8, 1.00), include.lowest = TRUE)
map_RR_ST.IntI_cov = left_join(shape_file, resRR_PP_stIntI_cov, by = c("lad09cd" = "lad09cd"))
p9 = ggplot() + geom_sf(data = map_RR_ST.IntI_cov, color = NA) + aes(fill = resRRcat) +
theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title="RR")) + ggtitle("RR ST model Int I - with covariates") +
theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
p10 = ggplot() + geom_sf(data = map_RR_ST.IntI_cov, color = NA) + aes(fill = PPcat) +
theme_bw() +
scale_fill_viridis(
option = "plasma",
name = "PP ST model Int I Covars",
discrete = T,
direction = -1,
guide = guide_legend(
title.position = 'top',
reverse = T
)) + ggtitle("PP ST model Int I - with covariates") + theme(text = element_text(size=15),
axis.text.x = element_blank(),
axis.text.y = element_blank(), plot.title = element_text(size = 12, face = "bold"))
# (p9 | p10)
formula_sensitivity = O ~ deprivation_cat + physact_cat +
f(ID.space, model="bym2", graph=shape.adj,
hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01)),
phi = list(
prior = "pc",
param = c(0.5, 2 / 3)))) +
f(ID.time,model="rw1", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))+
f(ID.space.time,model="iid", hyper=list(prec = list(
prior = "pc.prec",
param = c(0.5 / 0.31, 0.01))))
sensitivity_mod = inla(formula=formula_sensitivity, family="poisson", data=RESP_DATA_ST, E=E,
control.compute=list(dic=TRUE, waic=TRUE))
# WAIC comparison between ST mod T1 with continous and categorical covariates
# Comparing WAIC between adjusted and unadjusted models
cat("Continuous WAIC =", stIntI.BYM.model_cov$waic$waic, "\n",
"Categorical WAIC =", sensitivity_mod$waic$waic, "\n")
## Continuous WAIC = 39585.61
## Categorical WAIC = 39588.96
# Categorical higher = worse fit
RESP_DATA_ST$intI_cov = stIntI.BYM.model_cov$summary.random$ID.space.time$mean
RESP_DATA_ST$intI_cov_cat = cut(RESP_DATA_ST$intI_cov, breaks=c(-1,-0.05,
-0.01, 0.01, 0.05, 1),include.lowest = T)
ggplot() +
geom_sf(data = RESP_DATA_ST, aes(fill = intI_cov_cat), color = NA)+ theme_bw() + scale_fill_brewer(palette = "PuOr") +
guides(fill=guide_legend(title=NULL)) +
theme(text = element_text(size=20),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
panel.grid = element_blank()) +
facet_wrap(~ ID.time, ncol =8, labeller=labeller(ID.time=c("0"="2002","1"="2003","2"="2004","3"="2005","4"="2006","5"="2007","6"="2008","7"="2009","8"="2010","9"="2011", "10"="2012","11"="2013","12"="2014","13"="2015", "14"="2016","15"="2017"))) +
labs("") + ggtitle("Space Time Interaction")
Hyperparameter Table
dat.hyper2 =
round(
data.frame(median = stIntI.BYM.model_cov$summary.hyperpar[,4],
LL = stIntI.BYM.model_cov$summary.hyperpar[,3],
UL = stIntI.BYM.model_cov$summary.hyperpar[,5]),
digits = 3)
row.names(dat.hyper2) =
rownames(stIntI.BYM.model_cov$summary.hyperpar)
knitr::kable(dat.hyper2, caption = "Posterior median and 95% CrI of hyperparameters.") %>% kable_styling(bootstrap_options = "striped", full_width = F, position = "center")
| median | LL | UL | |
|---|---|---|---|
| Precision for ID.space | 40.111 | 31.472 | 50.151 |
| Phi for ID.space | 0.851 | 0.674 | 0.949 |
| Precision for ID.time | 119.849 | 54.520 | 245.607 |
| Precision for ID.space.time | 85.550 | 78.876 | 92.850 |
WAIC comparison
dat.WAIC = data.frame(model = c("Spatial", "SpatTemp no int", "SpatTemp noint covar", "SpatTemp typeI", "SpatTemp typeI covar"),
WAIC = c(sBYM.model$waic$waic, stBYM.model$waic$waic,stBYM_cov$waic$waic, stIntI.BYM.model$waic$waic, stIntI.BYM.model_cov$waic$waic)
)
row.names(dat.WAIC) = NULL
knitr::kable(dat.WAIC, caption = "WAIC of all models") %>% kable_styling(bootstrap_options = "striped", full_width = F, position = "center")
| model | WAIC |
|---|---|
| Spatial | 3437.10 |
| SpatTemp no int | 42893.90 |
| SpatTemp noint covar | 42885.39 |
| SpatTemp typeI | 39590.55 |
| SpatTemp typeI covar | 39585.61 |
Spatial, Spatial Temporal, Spatial Temporal with Covariates, Spatial Temporal with Type I Interaction, Spatial Temporal with Type I Interaction and Covariates ################################################################################
# Spatial Model
(p1|p2)
# Spatial Temporal Model - without covariates
(p3|p4)
# Spatial Temporal Model - with covariates
(p5|p6)
# Spatial Temporal Model Type I Interaction - with and without covariates
(p7|p8) / (p9|p10)
addSmallLegend <- function(myPlot, pointSize = 1, textSize = 10, spaceLegend = 1) {
myPlot +
guides(shape = guide_legend(override.aes = list(size = pointSize)),
color = guide_legend(override.aes = list(size = pointSize))) +
theme(legend.title = element_text(size = textSize),
legend.text = element_text(size = textSize),
legend.key.size = unit(spaceLegend, "lines"))
}
addSmallLegend(p5)
addSmallLegend(p1) | addSmallLegend(p2)
fig2 <- addSmallLegend(p1) | addSmallLegend(p2)
ggsave("fig2.png", plot = fig2, width = 10, height = 8, dpi = 300)
fig3 <- ((addSmallLegend(p3) | addSmallLegend(p4))) / (addSmallLegend(p5) | addSmallLegend(p6))
ggsave("fig3.png", plot = fig3, width = 10, height = 8, dpi = 300)
fig4 <- addSmallLegend(p9) | addSmallLegend(p10)
ggsave("fig4.png", plot = fig4, width = 10, height = 8, dpi = 300)